123456789101112131415161718192021222324252627282930313233343536 |
- package com.bofeng.entity;
- import com.baomidou.mybatisplus.annotations.TableField;
- import com.baomidou.mybatisplus.annotations.TableId;
- import com.baomidou.mybatisplus.annotations.TableName;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * @Author: xielianghe
- * @Date: 2020/2/21 22:00
- */
- @Getter
- @Setter
- @TableName("ms_trip")
- public class MsTrip {
- @TableId("trip_id")
- private Long tripId;
- @TableField("work_local")
- private Integer workLocal;
- @TableField("work_local_other")
- private String workLocalOther;
- @TableField("today_local")
- private Integer todayLocal;
- @TableField("today_local_other")
- private String todayLocalOther;
- @TableField("is_trip")
- private Integer isTrip;
- }
|