liuyu
6 天以前 aed0e43ff4eb2cdb5fa81b6b9b16d8d2b723c02e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package jnpf.dmsEntity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
@Data
@TableName("dms_wenjian_xiuding_shenqing")
public class DmsWenjianXiudingShenqingEntity {
    @TableId("f_id") private String id;
    @TableField("f_tenant_id") private String tenantId;
    @TableField("f_flow_state") private Integer flowState;
    @TableField("f_delete_mark") private Integer deleteMark;
    @TableField("wenjian_id") private String wenjianId;
    @TableField("banben_xuhao") private Integer banbenXuhao;
    @TableField("banbenhao") private String banbenhao;
    @TableField("yuan_biangeng_xuhao") private Long yuanBiangengXuhao;
}