fix
songhuangfeng123
2022-07-27 9112f70f645d3521fa490e648cdce70b9a7254f0
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
package com.gkhy.safePlatform.targetDuty.model.dto.req;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.gkhy.safePlatform.targetDuty.entity.BaseDomain;
 
/**
 * (WorkApprove)表实体类
 *
 * @author xurui
 * @since 2022-07-22 10:46:11
 */
@SuppressWarnings("serial")
public class SubmitApprove extends BaseDomain {
 
    //流程标题
    private String title;
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
                //提交人ID/外键
    private Long submitPersonId;
        
    public Long getSubmitPersonId() {
        return submitPersonId;
    }
 
    public void setSubmitPersonId(Long submitPersonId) {
        this.submitPersonId = submitPersonId;
    }
 
                //关联业务类型 1:目标检查 2:目标上报
    private Integer relateType;
        
    public Integer getRelateType() {
        return relateType;
    }
 
    public void setRelateType(Integer relateType) {
        this.relateType = relateType;
    }
                //关联的审批对象表ID
    private Long relateId;
        
    public Long getRelateId() {
        return relateId;
    }
 
    public void setRelateId(Long relateId) {
        this.relateId = relateId;
    }
 
}