53 lines
926 B
Java
53 lines
926 B
Java
package com.ruoyi.wisdomarbitrate.domain;
|
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class TemplateManage extends BaseEntity {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
|
* ID
|
|
*/
|
|
private Long id;
|
|
|
|
/**
|
|
* 机构关联id
|
|
*/
|
|
private Long identifyId;
|
|
|
|
/**
|
|
* 模板名称
|
|
*/
|
|
private String temName;
|
|
|
|
/**
|
|
* 模板类型(1裁决书)
|
|
*/
|
|
private Integer temType;
|
|
/**
|
|
* 模板格式
|
|
*/
|
|
private String temFormat;
|
|
/**
|
|
* 文件名
|
|
*/
|
|
private String fileName;
|
|
/**
|
|
* 原模板路径
|
|
*/
|
|
private String temOrigPath;
|
|
/**
|
|
* 修订后模板路径
|
|
*/
|
|
private String temRevisPath;
|
|
/**
|
|
* 删除标志(0代表存在 2代表删除)
|
|
*/
|
|
private Integer delFlag;
|
|
/**
|
|
* 机构关联id
|
|
*/
|
|
private String identifyName;
|
|
}
|