“djh”
2025-03-13 c037128979c760474f9e1c8b138567af12013b1d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package com.gkhy.sign.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import javax.validation.constraints.NotNull;
 
@TableName(value = "signature_template")
@ApiModel(value = "签署模版对象" , description = "签署模版对象")
public class SignatureTemplate extends BaseEntity {
 
    @TableId(type = IdType.AUTO)
    private Long id;
 
    @NotNull(message = "模版名称不能为空")
    @ApiModelProperty(value = "模版名称")
    private String templateName;
    @NotNull(message = "签署类型不能为空")
    @ApiModelProperty(value = "签署类型")
    private Integer typeId;
    @NotNull(message = "部门不能为空")
    @ApiModelProperty(value = "部门")
    private Long deptId;
    @ApiModelProperty(value = "文件路径")
    private String filePath;
    private Integer delFlag;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getTemplateName() {
        return templateName;
    }
 
    public void setTemplateName(String templateName) {
        this.templateName = templateName;
    }
 
    public Integer getTypeId() {
        return typeId;
    }
 
    public void setTypeId(Integer typeId) {
        this.typeId = typeId;
    }
 
    public Long getDeptId() {
        return deptId;
    }
 
    public void setDeptId(Long deptId) {
        this.deptId = deptId;
    }
 
    public String getFilePath() {
        return filePath;
    }
 
    public void setFilePath(String filePath) {
        this.filePath = filePath;
    }
 
    public Integer getDelFlag() {
        return delFlag;
    }
 
    public void setDelFlag(Integer delFlag) {
        this.delFlag = delFlag;
    }
}