package com.agentdriving.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;
|
|
import java.util.Date;
|
|
/**
|
* 事由管理
|
* @author pzb
|
* @Date 2023/2/27 11:34
|
*/
|
@Data
|
@TableName("t_main_content")
|
public class MainContent {
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
@TableField("id")
|
private Integer id;
|
/**
|
* 数据类型(1=转单,2=司机消单,3=用户取消订单)
|
*/
|
@TableField("type")
|
private Integer type;
|
/**
|
* 内容
|
*/
|
@TableField("content")
|
private String content;
|
/**
|
* 状态(1=正常,2=冻结,3=删除)
|
*/
|
@TableField("status")
|
private Integer status;
|
/**
|
* 添加时间
|
*/
|
@TableField("createTime")
|
private Date createTime;
|
}
|