package cn.huge.module.mediate.dto;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @title: 文书草稿数据传输类
|
* @description: 文书草稿数据传输类
|
* @company:hugeinfo
|
* @author: liyj
|
* @time: 2022-05-12 14:37:31
|
* @version 1.0.0
|
*/
|
@Data
|
public class DocDraftDTO {
|
|
/**
|
* 调解协议书草稿编号
|
*/
|
private String id;
|
|
/**
|
* 纠纷编号
|
*/
|
private String caseId;
|
|
/**
|
* 所属类型
|
*/
|
private String ownerType;
|
|
/**
|
* 草稿文件名称
|
*/
|
private String docName;
|
|
/**
|
* 草稿内容
|
*/
|
private String content;
|
|
/**
|
* 草稿文件路径
|
*/
|
private String docUrl;
|
|
/**
|
* 下载链接
|
*/
|
private String downUrl;
|
|
/**
|
* 制作人编号
|
*/
|
private String userId;
|
|
/**
|
* 制作人名称
|
*/
|
private String userName;
|
|
/**
|
* 制作组织编号
|
*/
|
private String unitId;
|
|
/**
|
* 制作组织名称
|
*/
|
private String unitName;
|
|
/**
|
* 客户编号
|
*/
|
private String custId;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
/**
|
* 更新时间
|
*/
|
private Date updateTime;
|
|
/**
|
* 展示文件名称
|
*/
|
private String name;
|
|
/**
|
* 文件类型
|
*/
|
private String cat;
|
|
/**
|
* 查看链接
|
*/
|
private String showUrl;
|
|
/**
|
* 上传类型,1:模板,2:本地上传
|
*/
|
private String uploadType;
|
|
}
|