liuyu
6 天以前 aed0e43ff4eb2cdb5fa81b6b9b16d8d2b723c02e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
}