文件名从 Source/UBCS/ubcs-service-api/ubcs-omd-api/src/main/java/com/vci/ubcs/omd/vo/DictBizMVO.java 修改 |
| | |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import com.vci.ubcs.omd.entity.DictBizM; |
| | | import com.vci.ubcs.omd.entity.Dict; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @ApiModel(value = "DictBizVO瀵硅薄", description = "DictBizVO瀵硅薄") |
| | | public class DictBizMVO extends DictBizM implements INode<DictBizM> { |
| | | @ApiModel(value = "DictVO瀵硅薄", description = "DictVO瀵硅薄") |
| | | public class DictVO extends Dict implements INode<Dict> { |
| | | private static final long serialVersionUID = 1L; |
| | | /** |
| | | * 涓婚敭ID |
| | |
| | | * 瀛愬瓩鑺傜偣 |
| | | */ |
| | | @JsonInclude(JsonInclude.Include.NON_EMPTY) |
| | | private List<DictBizM> children; |
| | | private List<Dict> children; |
| | | |
| | | @Override |
| | | public List<DictBizM> getChildren() { |
| | | public List<Dict> getChildren() { |
| | | if (this.children == null) { |
| | | this.children = new ArrayList<>(); |
| | | } |