EmergencyCommandLiaisonUser.java
1.3 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
package com.skua.modules.emergency.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.jeecgframework.poi.excel.annotation.Excel;
/**
* 应急联络图关联人员
* @author 11389
*/
@Data
@TableName("emergency_command_liaison_user")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value="emergency_command_liaison_user对象", description="应急联络图关联人员")
public class EmergencyCommandLiaisonUser {
public EmergencyCommandLiaisonUser() {
}
public EmergencyCommandLiaisonUser(String emergencyCommandLiaisonId, String userId) {
this.emergencyCommandLiaisonId = emergencyCommandLiaisonId;
this.userId = userId;
}
/**主键 */
@TableId(type = IdType.UUID)
@ApiModelProperty(value = "主键 ")
private String id;
/**应急指挥组ID*/
@Excel(name = "应急指挥组ID", width = 15)
@ApiModelProperty(value = "应急指挥组ID")
private String emergencyCommandLiaisonId;
/**用户ID*/
@Excel(name = "用户ID", width = 15)
@ApiModelProperty(value = "用户ID")
private String userId;
}