fhx
2023-08-14 09998c5da2f333dad298a3b45ba35f1ed9316fc3
提交 | 用户 | age
09998c 1 package com.hz.crm.dto.phis;
F 2
3 import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
4 import com.gitee.sunchenbin.mybatis.actable.annotation.Index;
5 import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant;
6 import lombok.Data;
7
8 import java.util.Date;
9 import java.util.List;
10
11 /**
12  * phis诉求分类关联数据dto
13  * @USER: fhx
14  * @DATE: 2023/8/14
15  **/
16 @Data
17 public class PhisAppealTypeRelateDto {
18
19     /** ID */
20     private String id;
21     /** 创建时间 */
22     private Date createTime;
23     /** 是否删除 */
24     private Integer isDel = 0;
25     /** 关联类型 */
26     private Integer relateType;
27     /** 关联id */
28     private String relateId;
29     /** 关联名称 */
30     private String relateName;
31     /** 诉求类型id */
32     private String appealTypeId;
33
34     private List<PhisAppealTypeRelateDto> dtoList;
35
36     public PhisAppealTypeRelateDto() {
37     }
38 }