package com.hz.crm.dto.phis; 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 java.util.Date; import java.util.List; /** * phis诉求分类关联数据dto * @USER: fhx * @DATE: 2023/8/14 **/ @Data public class PhisAppealTypeRelateDto { /** ID */ private String id; /** 创建时间 */ private Date createTime; /** 是否删除 */ private Integer isDel = 0; /** 关联类型 */ private Integer relateType; /** 关联id */ private String relateId; /** 关联名称 */ private String relateName; /** 诉求类型id */ private String appealTypeId; private List dtoList; public PhisAppealTypeRelateDto() { } }