package com.bofeng.entity; import com.baomidou.mybatisplus.annotations.TableField; import com.baomidou.mybatisplus.annotations.TableId; import com.baomidou.mybatisplus.annotations.TableName; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Getter; import lombok.Setter; import org.joda.time.DateTime; import java.util.Date; /** * @Author: xielianghe * @Date: 2020/2/21 22:00 */ @Getter @Setter @TableName("ms_trip_det") public class MsTripDet { @TableId("trip_det_id") private Long tripDetId; @TableField("trip_id") private Long tripId; @TableField("sort") private Integer sort; @TableField("start_local") private Integer startLocal; @TableField("start_local_other") private String startLocalOther; @TableField("end_local") private Integer endLocal; @TableField("end_local_other") private String endLocalOther; @TableField("trip_type") private Integer tripType; @TableField("trip_type_desp") private String tripTypeDesp; @TableField("user_create") private Long userCreate; @TableField("time_create") private DateTime timeCreate; @TableField("user_update") private Long userUpdate; @TableField("time_update") private DateTime timeUpdate; @TableField(exist = false) private String returnWork; @TableField(exist = false) private String startMsg; @TableField(exist = false) private String endMsg; }