eight
2025-03-31 ea39fd11eb84105040a7af406c9180a17f1cd65a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cn.lihu.jh.module.ecg.feign.dto;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
 
public class PlanDefItemList {
    @JsonProperty
    private PlanDefItem PlanDefItem;
 
    public cn.lihu.jh.module.ecg.feign.dto.PlanDefItem getPlanDefItem() {
        return PlanDefItem;
    }
 
    public void setPlanDefItem(cn.lihu.jh.module.ecg.feign.dto.PlanDefItem planDefItem) {
        PlanDefItem = planDefItem;
    }
 
    // 省略 getter 和 setter 方法
}