fhx
2023-08-17 ca76b08d39a7bf1841a11bc120a43a9f8e39d543
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.hz.crm.dto.phis;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
import com.gitee.sunchenbin.mybatis.actable.annotation.Index;
import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
import java.util.List;
 
/**
 * phis诉求分类关联数据dto
 * @USER: fhx
 * @DATE: 2023/8/14
 **/
@Data
public class PhisAppealTypeRelateDto {
 
    /** ID */
    private String id;
    /** 创建时间 */
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
    private Date createTime;
    /** 是否删除 */
    private Integer isDel = 0;
    /** 关联类型 */
    private Integer relateType;
    /** 关联id */
    private String relateId;
    /** 关联名称 */
    private String relateName;
    /** 诉求类型id */
    private String appealTypeId;
 
    private List<PhisAppealTypeRelateDto> dtoList;
 
    public PhisAppealTypeRelateDto() {
    }
}