nickchange
2023-10-17 a830a73fd10a21e3793c79a35be4e532de124c6f
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
package com.dsh.course.feignClient.other.model;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @author zhibing.pu
 * @Date 2023/8/1 17:43
 */
@Data
public class SiteAddDTO {
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 门店id
     */
    private Integer storeId;
    /**
     * 场地名称
     */
    private String name;
    /**
     * 场地类型id
     */
    private Integer siteTypeId;
    /**
     * 城市管理员id
     */
    private Integer cityManagerId;
    /**
     * 省
     */
    private String province;
    /**
     * 省编号
     */
    private String provinceCode;
    /**
     * 市名称
     */
    private String city;
    /**
     * 市编号
     */
    private String cityCode;
    /**
     * 预约开始时间
     */
    private String appointmentStartTime;
    /**
     * 预约结束时间
     */
    private String appointmentEndTime;
    /**
     * 现金价格(x/半小时)
     */
    private Double cashPrice;
    /**
     * 玩湃币价格(x/半小时)
     */
    private Integer playPaiCoin;
    /**
     * 场地责任险有效期
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date insuranceEndTime;
    /**
     * 场地责任险图片
     */
    private String insuranceImg;
    /**
     * 消防应急管理方案
     */
    private String managementPlan;
    /**
     * 状态(1=正常,2=冻结,3=删除)
     */
    private Integer state;
    /**
     * 添加时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date insertTime;
}