| | |
| | | package org.dromara.eims.domain; |
| | | |
| | | import org.apache.poi.hpsf.Decimal; |
| | | import org.dromara.common.mybatis.core.domain.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | |
| | |
| | | */ |
| | | private Long curBorrowId; |
| | | |
| | | /** |
| | | * 数量 |
| | | */ |
| | | private Integer amount; |
| | | |
| | | /** |
| | | * 品牌 |
| | | */ |
| | | private String brand; |
| | | |
| | | /** |
| | | * 单位 |
| | | */ |
| | | private String unit; |
| | | |
| | | /** |
| | | * 使用部门 |
| | | */ |
| | | private Long useDept; |
| | | |
| | | /** |
| | | * 管理人 |
| | | */ |
| | | private Long manageUser; |
| | | |
| | | /** |
| | | * 管控需求 |
| | | */ |
| | | private String isManage; |
| | | |
| | | /** |
| | | * 单价 |
| | | */ |
| | | private BigDecimal unitPrice; |
| | | |
| | | /** |
| | | * 功率 |
| | | */ |
| | | private String power; |
| | | |
| | | } |