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