yanghb
2024-12-17 1287337fd0b0c156ec79712f9a600ebeffefe3a6
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
package com.zzg.common.core.domain.entity.state;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.zzg.common.core.domain.BaseEntity;
import lombok.Data;
 
@Data
@TableName(value = "state_process_template")
public class StateProcessTemplate extends BaseEntity {
 
    @TableId(type = IdType.NONE)
    private String id;
    private String templateKey;
    private Integer templateVersion;
    private String templateName;
    private String settings;
    private String process;
    private String remark;
    private Integer status;
    private Long workFlowId;
    private Integer workflowVersion;
    private Integer delFlag;
 
}