package cn.gistack.sm.materials.entity;
|
|
import com.baomidou.mybatisplus.annotation.FieldStrategy;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springblade.core.mp.base.BaseEntity;
|
|
import java.io.Serializable;
|
|
/**
|
* @PROJECT_NAME: skjcmanager
|
* @DESCRIPTION: 抢险队伍管理
|
* @USER: aix
|
* @DATE: 2023/5/30 14:52
|
*/
|
@Data
|
@TableName("sm_rescueteam_manage")
|
@ApiModel(value = "抢险队伍管理对象", description = "抢险队伍管理对象")
|
public class RescueTeamManage extends BaseEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 防汛年度
|
*/
|
private Integer materialsYear;
|
|
/**
|
* 水库id
|
*/
|
@ApiModelProperty(value = "水库id")
|
private String resGuid;
|
|
/**
|
* 水库名称
|
*/
|
@ApiModelProperty(value = "水库名称")
|
private String resName;
|
|
/**
|
* 城市
|
*/
|
@ApiModelProperty(value = "城市")
|
@TableField(value = "city",updateStrategy = FieldStrategy.IGNORED)
|
private String city;
|
|
/**
|
* 乡镇
|
*/
|
@ApiModelProperty(value = "区县")
|
@TableField(value = "county",updateStrategy = FieldStrategy.IGNORED)
|
private String county;
|
|
/**
|
* 乡镇
|
*/
|
@ApiModelProperty(value = "乡镇")
|
@TableField(value = "town",updateStrategy = FieldStrategy.IGNORED)
|
private String town;
|
|
/**
|
* 名称
|
*/
|
@ApiModelProperty(value = "名称")
|
private String userName;
|
|
/**
|
* 单位
|
*/
|
@ApiModelProperty(value = "单位")
|
private String userUnit;
|
|
/**
|
* 职务
|
*/
|
@ApiModelProperty(value = "职务")
|
private String userPosition;
|
|
/**
|
* 联系方式
|
*/
|
@ApiModelProperty(value = "联系方式")
|
private String userPhone;
|
|
/**
|
* 备注
|
*/
|
@ApiModelProperty(value = "备注")
|
private String remarks;
|
|
}
|