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_dangan_cundang_shenqing") public class DmsDanganCundangShenqingEntity { @TableId("f_id") private String id; @TableField("f_delete_mark") private Integer deleteMark; @TableField("f_flow_state") private Integer flowState; }