对比新文件 |
| | |
| | | package org.jeecg.modules.tms.entity.vo; |
| | | |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | |
| | | @Data |
| | | @Accessors(chain = true) |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class SharpeeningVo { |
| | | private String id; |
| | | |
| | | @Dict(dictTable = "tms_tools_classify", dicText = "type_name", dicCode = "id") |
| | | private String classifyId; |
| | | |
| | | private String toolCode; |
| | | |
| | | private String foreignLanguageName; |
| | | private String standardLevel; |
| | | private String standardCode; |
| | | private String toolModel; |
| | | @Dict(dicCode = "tool_para_type") |
| | | private String paramaTableName; |
| | | private Integer totalCount; |
| | | |
| | | @Dict(dicCode = "application_type") |
| | | private String applicationType; |
| | | private String chineseName; |
| | | private String supplierId; |
| | | private String storageLocation; |
| | | private String mainUnit; |
| | | private String toolId; |
| | | private String positionCode; |
| | | private String warehouseId; |
| | | private String provinceCity; |
| | | |
| | | } |