1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package cn.gistack.sm.sjztmd.entity;
|
| import com.baomidou.mybatisplus.annotation.TableField;
| import io.swagger.annotations.ApiModel;
| import lombok.Data;
|
| @Data
| @ApiModel(value = "巡查责任人对象", description = "巡查责任人对象")
| public class PatrolResponsiblePerson {
|
| @TableField("\"res_guid\"")
| private String resGuid;
| @TableField("\"name\"")
| private String name;
| @TableField("\"user_id\"")
| private String userId;
|
| }
|
|