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 方法 }