ReservationSubmission.java
3.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package com.huaheng.pc.reservationSubmission.domain;
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 org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import io.swagger.annotations.ApiModelProperty;
import javax.validation.constraints.*;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
import java.util.Date;
/**
* 表 reservation_submission
* @author huaheng
* @date 2022-11-24
*/
@TableName(value = "reservation_submission")
@Data
public class ReservationSubmission implements Serializable {
private static final long serialVersionUID = 1L;
/** 主键 */
@TableId(value = "id", type = IdType.INPUT)
private String id;
/** 创建人 */
@TableField(value = "create_by")
private String createBy;
/** 创建日期 */
@TableField(value = "create_time")
private LocalDateTime createTime;
/** 更新人 */
@TableField(value = "update_by")
private String updateBy;
/** 更新日期 */
@TableField(value = "update_time")
private LocalDateTime updateTime;
/** 预约时间 */
@TableField(value = "appointment_time")
private String appointmentTime;
/** 预约形式 */
@TableField(value = "reservation_method")
private String reservationMethod;
/** 车牌号 */
@TableField(value = "car_number")
private String carNumber;
/** 司机名称 */
@TableField(value = "driver_name")
private String driverName;
/** 司机手机号 */
@TableField(value = "phone_number")
private String phoneNumber;
/** 车型 */
@TableField(value = "vehicle")
private String vehicle;
/** 月台详情id */
@TableField(value = "platform_detail_id")
private String platformDetail_id;
/** 客户名称 */
@TableField(value = "customer_name")
private String customerName;
/** 订单号 */
@TableField(value = "order_number")
private String orderNumber;
/** 填表人电话 */
@TableField(value = "submit_phone")
private String submitPhone;
/** 装车/卸车 */
@TableField(value = "objective")
private String objective;
/** 卸货种类 */
@TableField(value = "detailed")
private String detailed;
/** 预约状态 */
@TableField(value = "stare")
private Integer stare;
/** 月台组 */
@TableField(value = "railway_platform")
private String railwayPlatform;
/** 备注 */
@TableField(value = "remark")
private String remark;
/** 备用字段 */
@TableField(value = "userdef1")
private String userdef1;
/** 身份证信息 */
@TableField(value = "identity_card")
private String identityCard;
/** 时间段 */
@TableField(value = "time_selection")
private String timeSelection;
/** 审核状态(字典:audit_status) */
@TableField(value = "audit_status")
private String auditStatus;
}