package com.dsh.course.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* 车辆型号
|
*/
|
@Data
|
@TableName("t_server_carmodel")
|
public class MotorModel {
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
@TableField("id")
|
private Integer id;
|
/**
|
* 名称
|
*/
|
@TableField("insertTime")
|
private Date insertTime;
|
/**
|
* 备注
|
*/
|
@TableField("name")
|
private String name;
|
/**
|
* 添加时间
|
*/
|
@TableField("img")
|
private String img;
|
/**
|
* 状态(1=正常,2=删除)
|
*/
|
@TableField("state")
|
private Integer state;
|
@TableField("language")
|
private Integer language;
|
@TableField("ename")
|
private String ename;
|
@TableField("yname")
|
private String yname;
|
}
|