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() {
|
}
|
}
|