package com.stylefeng.guns.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 2022/5/27 9:07
|
*/
|
@Data
|
@TableName("tb_show_modular")
|
public class ShowModular {
|
//主键
|
@TableId(value = "id", type = IdType.AUTO)
|
@TableField("id")
|
private Integer id;
|
//类型(1=招募,2=租车,3=买车,4=出租个人车辆,5=卖车,6=商家中心,7=打车卡)
|
@TableField("type")
|
private Integer type;
|
//司机是否显示(1=是,2=否)
|
@TableField("driverShow")
|
private Integer driverShow;
|
//用户是否显示(1=是,2=否)
|
@TableField("userShow")
|
private Integer userShow;
|
}
|