广州市综治平台后端
xusd
2025-06-07 36306491396230522fa20585c2621a7fc899849a
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package cn.huge.module.sy.domain.po;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @title: 系统时限配置表数据库对应关系类
 * @description: PO中的属性与数据表是一一对应关系,如需根据业务处理不同,请使用BO对象。
 * @company:hugeinfo
 * @author: wangwh
 * @time: 2024-09-04 16:48:57
 * @version 1.0.0
 */
@TableName(value = "dyh_sy_time_limit")
@Data
public class SyTimeLimit {
 
    /**
    * 主键编号
    */
    @TableId(value = "id")
    private String id;
 
    /**
    * 时限类型
    */
    @TableField(value = "limit_type")
    private String limitType;
 
    /**
    * 时限名称
    */
    @TableField(value = "limit_type_name")
    private String limitTypeName;
 
    /**
    * 时限对应表
    */
    @TableField(value = "limit_table")
    private String limitTable;
 
    /**
    * 期限
    */
    @TableField(value = "time_term")
    private Integer timeTerm;
 
    /**
    * 期限单位
    */
    @TableField(value = "term_unit")
    private String termUnit;
 
    /**
    * 操作人编号
    */
    @TableField(value = "oper_user_id")
    private String operUserId;
 
    /**
    * 操作人名称
    */
    @TableField(value = "oper_user_name")
    private String operUserName;
 
    /**
    * 删除状态,0:未删除,1:已删除
    */
    @TableLogic
    @TableField(value = "delete_status")
    private Integer deleteStatus;
 
    /**
    * 创建时间
    */
    @TableField(value = "create_time")
    private Date createTime;
 
    /**
    * 状态时间
    */
    @TableField(value = "update_time")
    private Date updateTime;
 
}