Pu Zhibing
9 小时以前 b293f932d31971dfff8769f61ad39de50fd28c43
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
package com.supersavedriving.user.modular.system.model;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import lombok.Data;
 
import java.util.Date;
 
/**
* 系统配置
* @author pzb
* @Date 2023/2/15 16:22
*/
@Data
@TableName("t_system_config")
public class SystemConfig {
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    @TableField("id")
    private Integer id;
    /**
     * 类型(1=派单规则,2=佣金分成规则,3=抽成规则,4=积分规则,5=价格规则,6=余额规则,7=客服管理)
     */
    @TableField("type")
    private Integer type;
    /**
     * 内容
     */
    @TableField("content")
    private String content;
    /**
     * '公司id'
     */
    @TableField("companyId")
    private Integer companyId;
    /**
     * 类型 1=平台 2=分公司 3=代理商
     */
    @TableField("companyType")
    private Integer companyType;
    /**
     * 平台设置抽成时使用
     */
    @TableField("branchOfficeId")
    private Integer branchOfficeId;
    /**
     * 提交时间
     */
    @TableField("commitTime")
    private Date commitTime;
    /**
     * 状态 1=待审核 2=通过 3=驳回
     */
    @TableField("status")
    private Integer status;
    /**
     * 审核意见
     */
    @TableField("remark")
    private String remark;
}