package com.supersavedriving.driver.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;
|
|
/**
|
* 系统配置
|
* @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;
|
}
|