| | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | public class EmergencySuppliesPageRespDTO { |
| | | //部门名称 |
| | | private String deptName; |
| | | |
| | | @TableId(type = IdType.AUTO) |
| | | public String getDeptName() { |
| | | return deptName; |
| | | } |
| | | |
| | | public void setDeptName(String deptName) { |
| | | this.deptName = deptName; |
| | | } |
| | | |
| | | private Long id; |
| | | |
| | | //名称 |
| | | private String name; |
| | | //编号 |
| | | private String number; |
| | | //负责部门id |
| | | private Long departmentId; |
| | | //分类(数据字典) |
| | | private String classification; |
| | | //存放位置 |
| | | private String place; |
| | | //存储数量 |
| | | private Integer count; |
| | | |
| | | public Long getId() { |