修复公章管理
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
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 temOrigPath;
|
||||
/**
|
||||
* 修订后模板路径
|
||||
*/
|
||||
private String temRevisPath;
|
||||
/**
|
||||
* 删除标志(0代表存在 2代表删除)
|
||||
*/
|
||||
private Integer delFlag;
|
||||
}
|
||||
Reference in New Issue
Block a user