package cn.gistack.sm.materials.entity;
|
|
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_materials_manage")
|
@ApiModel(value = "应急物资管理对象", description = "应急物资管理对象")
|
public class MaterialsManage extends BaseEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 水库id
|
*/
|
@ApiModelProperty(value = "水库id")
|
private String resGuid;
|
|
/**
|
* 水库名称
|
*/
|
@ApiModelProperty(value = "水库名称")
|
private String resName;
|
|
/**
|
* 行政区
|
*/
|
@ApiModelProperty(value = "行政区")
|
private String adCode;
|
|
/**
|
* 物资类型
|
*/
|
@ApiModelProperty(value = "物资类型")
|
private String materialsType;
|
|
/**
|
* 物资名称
|
*/
|
@ApiModelProperty(value = "物资名称")
|
private String materialsName;
|
|
/**
|
* 物资数量
|
*/
|
@ApiModelProperty(value = "物资数量")
|
private Integer materialsAmount;
|
|
/**
|
* 物资单位
|
*/
|
@ApiModelProperty(value = "物资单位")
|
private String materialsUnit;
|
|
/**
|
* 备注
|
*/
|
@ApiModelProperty(value = "备注")
|
private String remarks;
|
|
}
|