洪城义警-正式版后台
zengh
2022-02-25 1e2c66da7b78e90a93be3a6c1ffa6fe469b55be7
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/*
 *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions are met:
 *
 *  Redistributions of source code must retain the above copyright notice,
 *  this list of conditions and the following disclaimer.
 *  Redistributions in binary form must reproduce the above copyright
 *  notice, this list of conditions and the following disclaimer in the
 *  documentation and/or other materials provided with the distribution.
 *  Neither the name of the dreamlu.net developer nor the names of its
 *  contributors may be used to endorse or promote products derived from
 *  this software without specific prior written permission.
 *  Author: Chill 庄骞 (smallchill@163.com)
 */
package org.springblade.modules.taskqd.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * 实体类
 *
 * @author BladeX
 * @since 2020-08-06
 */
@Data
@TableName("sys_taskqd")
@ApiModel(value = "Taskqd对象", description = "Taskqd对象")
public class Taskqd implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 任务标题
     */
    @ApiModelProperty(value = "任务标题")
    private String rname;
    /**
     * 任务内容
     */
    @ApiModelProperty(value = "任务内容")
    private String content;
 
    /**
     * 任务时间
     */
    @ApiModelProperty(value = "任务时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private String time;
 
    /**
     * 省
     */
    @ApiModelProperty(value = "省")
    private String province;
 
    /**
     * 城市
     */
    @ApiModelProperty(value = "城市")
    private String city;
 
    /**
     * 区县
     */
    @ApiModelProperty(value = "区县")
    private String district;
 
    /**
     * 接受总数
     */
    @ApiModelProperty(value = "接受总数")
    private Integer jnum;
 
    /**
     * 路线
     */
    @ApiModelProperty(value = "路线")
    private String line;
 
    /**
     * 任务地点
     */
    @ApiModelProperty(value = "任务地点")
    private String raddress;
 
    /**
     * 任务类型
     */
    @ApiModelProperty(value = "任务类型")
    private String rtype;
 
    /**
     * 用户id
     */
    @ApiModelProperty(value = "用户id")
    private String serid;
 
    /**
     * 人数
     */
    @ApiModelProperty(value = "人数")
    private Integer num;
 
    /**
     * 积分
     */
    @ApiModelProperty(value = "积分")
    private String integral;
 
    /**
     * 图片
     */
    @ApiModelProperty(value = "图片")
    private String url;
 
    /**
     * 队长
     */
    @ApiModelProperty(value = "队长")
    private String captain;
    /**
     * 成员
     */
    @ApiModelProperty(value = "成员")
    private String team;
    /**
     * 是否是队长
     */
    @ApiModelProperty(value = "是否是队长")
    private String iscation;
    /**
     * 发布人
     */
    @ApiModelProperty(value = "发布人")
    private String publisher;
    /**
     * 辖区
     */
    private String jurisdiction;
    /**
     * 发起人id
     */
    private String fid;
    /**
     * 发起人名称
     */
    private String fname;
    /**
     * 集合点坐标
     */
    private String gather;
    /**
     * 集合点位置
     */
    private String gathername;
    /**
     * 任务类型
     */
    private String tasktype;
    /**
     * 发布人联系方式
     */
    private String phone;
 
}