EmergencyCommandLiaisonUser.java 1.3 KB
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;
}