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; }