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;
|
|
/**
|
* 车辆服务
|
*/
|
@Data
|
@TableName("t_car_service")
|
public class CarService {
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
@TableField("id")
|
private Integer id;
|
/**
|
* 车辆id
|
*/
|
@TableField("carId")
|
private Integer carId;
|
/**
|
* 服务类型(1=专车,4=小件物流-同城)
|
Business types: (1=private car, 4=courier-same city)
|
*/
|
@TableField("type")
|
private Integer type;
|
/**
|
* 服务车型id
|
*/
|
@TableField("serverCarModelId")
|
private Integer serverCarModelId;
|
}
|