刘光辉
昨天 bb638871a7fb692d80f1b7a758f991dc0879002c
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
package jnpf.dmsEntity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.util.Date;
 
@Data
@TableName("dms_wenjian_xiuding_shenhe")
public class DmsWenjianXiudingShenheEntity {
    @TableId("f_id") private String id;
    @TableField("f_tenant_id") private String tenantId;
    @TableField("f_flow_id") private String flowId;
    @TableField("f_flow_task_id") private String flowTaskId;
    @TableField("f_flow_state") private Integer flowState;
    @TableField("f_delete_mark") private Integer deleteMark;
    @TableField("xiuding_shenqing_id") private String xiudingShenqingId;
    @TableField("biangeng_fangshi") private String biangengFangshi;
    @TableField("shengxiao_banben_xuhao") private Integer shengxiaoBanbenXuhao;
    @TableField("shengxiao_banbenhao") private String shengxiaoBanbenhao;
    @TableField("shengxiao_biangeng_xuhao") private Long shengxiaoBiangengXuhao;
    @TableField("banben_shengxiao_shijian") private Date banbenShengxiaoShijian;
}