¶Ô±ÈÐÂÎļþ |
| | |
| | | package org.jeecg.modules.eam.entity; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * @author lnl |
| | | */ |
| | | @Data |
| | | @Accessors(chain = true) |
| | | public class SparePartImportVo { |
| | | |
| | | @Excel(name = "å¤ä»¶ç¼ç ") |
| | | private String num; |
| | | |
| | | @Excel(name="å¤ä»¶åç§°") |
| | | private String name; |
| | | |
| | | @Excel(name="åå·") |
| | | private String model; |
| | | |
| | | @Excel(name="è§æ ¼") |
| | | private String specification; |
| | | |
| | | @Excel(name="å¶é å" ,dicCode = "id",dictTable="mom_base_constructor",dicText="name") |
| | | private String constructorId; |
| | | |
| | | @Excel(name="åä½" ,dicCode = "id",dictTable="mom_base_unit",dicText="name") |
| | | private String mainUnitId; |
| | | |
| | | |
| | | @Excel(name = "æ¹æ¬¡ç®¡çæ è¯", width = 15) |
| | | private Integer batchManagedFlag; |
| | | |
| | | |
| | | @Excel(name = "æææç®¡çæ è¯", width = 15) |
| | | private Integer validityManagedFlag; |
| | | |
| | | |
| | | @Excel(name = "æææ", width = 15) |
| | | private Integer validityPeriod; |
| | | |
| | | @Excel(name = "æææåä½", width = 15,dictTable="mom_base_unit",dicText="name") |
| | | private String validityPeriodUnitId; |
| | | |
| | | @Excel(name = "åºåä¸éå¶", width = 15) |
| | | private Integer inventoryUpperLimit; |
| | | |
| | | @Excel(name = "åºåä¸éå¶", width = 15) |
| | | private Integer inventoryLowerLimit; |
| | | |
| | | @Excel(name = "åºåé¢è¦ä¸é", width = 15) |
| | | private Integer inventoryWarnLimit; |
| | | |
| | | @Excel(name = "ç»æµè®¢è´§é", width = 15) |
| | | private Integer economicOrderQuantity; |
| | | |
| | | |
| | | @Excel(name = "éè´æåæ", width = 15) |
| | | private Integer purchaseLeadTime; |
| | | |
| | | |
| | | @Excel(name = "ç§æ·id", width = 15) |
| | | private String tenantId; |
| | | |
| | | |
| | | |
| | | |
| | | } |
| | |
| | | package org.jeecg.modules.spare.controller; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Arrays; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.stream.Collectors; |
| | | import java.io.IOException; |
| | | import java.io.UnsupportedEncodingException; |
| | | import java.net.URLDecoder; |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | |
| | | import com.baomidou.mybatisplus.core.toolkit.CollectionUtils; |
| | | import org.jeecg.common.api.vo.Result; |
| | | import org.jeecg.common.system.base.entity.SysUpload; |
| | | import org.jeecg.common.system.base.entity.SysUploadRela; |
| | | import org.jeecg.common.system.query.QueryGenerator; |
| | | import org.jeecg.common.util.oConvertUtils; |
| | | import org.jeecg.modules.eam.model.InspectionCycleVo; |
| | | import org.jeecg.modules.spare.entity.SparePart; |
| | | import org.jeecg.modules.spare.entity.SparesPartInventory; |
| | | import org.jeecg.modules.spare.service.ISparePartService; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | |
| | | import org.jeecg.common.api.vo.Result; |
| | | import org.jeecg.common.aspect.annotation.AutoLog; |
| | | import org.jeecg.common.system.base.controller.JeecgController; |
| | | import org.jeecg.common.system.query.QueryGenerator; |
| | | import org.jeecg.modules.spare.entity.SparePart; |
| | | import org.jeecg.modules.spare.entity.SparesPartInventory; |
| | | import org.jeecg.modules.spare.service.ISparePartService; |
| | | import org.jeecg.modules.spare.service.ISparesPartInventoryService; |
| | | import org.jeecg.modules.spare.vo.AuxiliaryUnitVo; |
| | | import org.jeecgframework.poi.excel.ExcelImportUtil; |
| | | import org.jeecgframework.poi.excel.def.NormalExcelConstants; |
| | | import org.jeecgframework.poi.excel.entity.ExportParams; |
| | | import org.jeecgframework.poi.excel.entity.ImportParams; |
| | | import org.jeecgframework.poi.excel.view.JeecgEntityExcelView; |
| | | import org.jeecg.common.system.base.controller.JeecgController; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | import org.springframework.web.multipart.MultipartHttpServletRequest; |
| | | import org.springframework.web.servlet.ModelAndView; |
| | | import com.alibaba.fastjson.JSON; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.jeecg.common.aspect.annotation.AutoLog; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.math.BigDecimal; |
| | | import java.util.Arrays; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @Description: mom_eam_spare_part |
| | |
| | | * @param req |
| | | * @return |
| | | */ |
| | | //@AutoLog(value = "mom_eam_spare_part-å页å表æ¥è¯¢") |
| | | @ApiOperation(value="mom_eam_spare_part-å页å表æ¥è¯¢", notes="mom_eam_spare_part-å页å表æ¥è¯¢") |
| | | @GetMapping(value = "/list") |
| | | public Result<IPage<SparePart>> queryPageList(SparePart sparePart, |
| | |
| | | */ |
| | | @AutoLog(value = "mom_eam_spare_part-æ·»å ") |
| | | @ApiOperation(value="mom_eam_spare_part-æ·»å ", notes="mom_eam_spare_part-æ·»å ") |
| | | //@RequiresPermissions("org.jeecg.modules:mom_eam_spare_part:add") |
| | | @PostMapping(value = "/add") |
| | | public Result<String> add(@RequestBody SparePart sparePart) { |
| | | sparePartService.save(sparePart); |
| | |
| | | */ |
| | | @AutoLog(value = "mom_eam_spare_part-éè¿idå é¤") |
| | | @ApiOperation(value="mom_eam_spare_part-éè¿idå é¤", notes="mom_eam_spare_part-éè¿idå é¤") |
| | | //@RequiresPermissions("org.jeecg.modules:mom_eam_spare_part:delete") |
| | | @DeleteMapping(value = "/delete") |
| | | public Result<String> delete(@RequestParam(name="id",required=true) String id) { |
| | | sparePartService.removeById(id); |
| | |
| | | */ |
| | | @AutoLog(value = "mom_eam_spare_part-æ¹éå é¤") |
| | | @ApiOperation(value="mom_eam_spare_part-æ¹éå é¤", notes="mom_eam_spare_part-æ¹éå é¤") |
| | | //@RequiresPermissions("org.jeecg.modules:mom_eam_spare_part:deleteBatch") |
| | | @DeleteMapping(value = "/deleteBatch") |
| | | public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) { |
| | | this.sparePartService.removeByIds(Arrays.asList(ids.split(","))); |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | //@AutoLog(value = "mom_eam_spare_part-éè¿idæ¥è¯¢") |
| | | @ApiOperation(value="mom_eam_spare_part-éè¿idæ¥è¯¢", notes="mom_eam_spare_part-éè¿idæ¥è¯¢") |
| | | @GetMapping(value = "/queryById") |
| | | public Result<SparePart> queryById(@RequestParam(name="id",required=true) String id) { |
| | |
| | | * @param request |
| | | * @param sparePart |
| | | */ |
| | | //@RequiresPermissions("org.jeecg.modules:mom_eam_spare_part:exportXls") |
| | | @RequestMapping(value = "/exportXls") |
| | | public ModelAndView exportXls(HttpServletRequest request, SparePart sparePart) { |
| | | return super.exportXls(request, sparePart, SparePart.class, "mom_eam_spare_part"); |
| | |
| | | * @param response |
| | | * @return |
| | | */ |
| | | //@RequiresPermissions("mom_eam_spare_part:importExcel") |
| | | |
| | | @RequestMapping(value = "/importExcel", method = RequestMethod.POST) |
| | | public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) { |
| | | return super.importExcel(request, response, SparePart.class); |
| | | MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request; |
| | | Map<String, MultipartFile> fileMap = multipartRequest.getFileMap(); |
| | | for (Map.Entry<String, MultipartFile> entity : fileMap.entrySet()) { |
| | | // è·åä¸ä¼ æä»¶å¯¹è±¡ |
| | | MultipartFile file = entity.getValue(); |
| | | ImportParams params = new ImportParams(); |
| | | params.setTitleRows(2); |
| | | params.setHeadRows(1); |
| | | params.setNeedSave(true); |
| | | try { |
| | | List<SparePart> list = ExcelImportUtil.importExcel(file.getInputStream(), SparePart.class, params); |
| | | long start = System.currentTimeMillis(); |
| | | sparePartService.saveBatch(list); |
| | | log.info("æ¶èæ¶é´" + (System.currentTimeMillis() - start) + "毫ç§"); |
| | | return Result.OK("æä»¶å¯¼å
¥æåï¼æ°æ®è¡æ°ï¼" + list.size()); |
| | | } catch (Exception e) { |
| | | log.error(e.getMessage(), e); |
| | | return Result.error("æä»¶å¯¼å
¥å¤±è´¥:" + e.getMessage()); |
| | | } finally { |
| | | try { |
| | | file.getInputStream().close(); |
| | | } catch (IOException e) { |
| | | e.printStackTrace(); |
| | | } |
| | | } |
| | | } |
| | | return Result.error("æä»¶å¯¼å
¥å¤±è´¥ï¼"); |
| | | } |
| | | |
| | | /** |
| | |
| | | import org.jeecg.common.aspect.annotation.AutoLog; |
| | | import org.jeecg.common.system.base.controller.JeecgController; |
| | | import org.jeecg.common.system.query.QueryGenerator; |
| | | import org.jeecg.modules.eam.entity.MaintenanceOrderActualWorkingHour; |
| | | import org.jeecg.modules.spare.entity.SparePart; |
| | | import org.jeecg.modules.spare.entity.SparesPartInventory; |
| | | import org.jeecg.modules.spare.service.ISparePartService; |
| | | import org.jeecg.modules.spare.service.ISparesPartInventoryService; |
| | | import org.jeecg.modules.spare.vo.AuxiliaryUnitVo; |
| | | import org.jeecgframework.poi.excel.ExcelImportUtil; |
| | | import org.jeecgframework.poi.excel.entity.ImportParams; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | import org.springframework.web.multipart.MultipartHttpServletRequest; |
| | | import org.springframework.web.servlet.ModelAndView; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.math.BigDecimal; |
| | | import java.io.IOException; |
| | | import java.util.Arrays; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | * @param response |
| | | * @return |
| | | */ |
| | | |
| | | @RequestMapping(value = "/importExcel", method = RequestMethod.POST) |
| | | public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) { |
| | | return super.importExcel(request, response, SparesPartInventory.class); |
| | | /** |
| | | * 导å
¥ |
| | | * |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/importExcel/{mainId}") |
| | | public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response, @PathVariable("mainId") String mainId) { |
| | | MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request; |
| | | Map<String, MultipartFile> fileMap = multipartRequest.getFileMap(); |
| | | for (Map.Entry<String, MultipartFile> entity : fileMap.entrySet()) { |
| | | // è·åä¸ä¼ æä»¶å¯¹è±¡ |
| | | MultipartFile file = entity.getValue(); |
| | | ImportParams params = new ImportParams(); |
| | | params.setTitleRows(2); |
| | | params.setHeadRows(1); |
| | | params.setNeedSave(true); |
| | | try { |
| | | List<SparesPartInventory> list = ExcelImportUtil.importExcel(file.getInputStream(), SparesPartInventory.class, params); |
| | | for (SparesPartInventory temp : list) { |
| | | temp.setId(mainId); |
| | | } |
| | | long start = System.currentTimeMillis(); |
| | | sparesPartInventoryService.saveBatch(list); |
| | | log.info("æ¶èæ¶é´" + (System.currentTimeMillis() - start) + "毫ç§"); |
| | | return Result.OK("æä»¶å¯¼å
¥æåï¼æ°æ®è¡æ°ï¼" + list.size()); |
| | | } catch (Exception e) { |
| | | log.error(e.getMessage(), e); |
| | | return Result.error("æä»¶å¯¼å
¥å¤±è´¥:" + e.getMessage()); |
| | | } finally { |
| | | try { |
| | | file.getInputStream().close(); |
| | | } catch (IOException e) { |
| | | e.printStackTrace(); |
| | | } |
| | | } |
| | | } |
| | | return Result.error("æä»¶å¯¼å
¥å¤±è´¥ï¼"); |
| | | } |
| | | /* @RequestMapping(value = "/importExcel", method = RequestMethod.POST) |
| | | public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) { |
| | | MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request; |
| | | Map<String, MultipartFile> fileMap = multipartRequest.getFileMap(); |
| | | for (Map.Entry<String, MultipartFile> entity : fileMap.entrySet()) { |
| | | // è·åä¸ä¼ æä»¶å¯¹è±¡ |
| | | MultipartFile file = entity.getValue(); |
| | | ImportParams params = new ImportParams(); |
| | | params.setTitleRows(2); |
| | | params.setHeadRows(1); |
| | | params.setNeedSave(true); |
| | | try { |
| | | List<SparesPartInventory> list = ExcelImportUtil.importExcel(file.getInputStream(), SparesPartInventory.class, params); |
| | | long start = System.currentTimeMillis(); |
| | | sparesPartInventoryService.saveBatch(list); |
| | | log.info("æ¶èæ¶é´" + (System.currentTimeMillis() - start) + "毫ç§"); |
| | | return Result.OK("æä»¶å¯¼å
¥æåï¼æ°æ®è¡æ°ï¼" + list.size()); |
| | | } catch (Exception e) { |
| | | log.error(e.getMessage(), e); |
| | | return Result.error("æä»¶å¯¼å
¥å¤±è´¥:" + e.getMessage()); |
| | | } finally { |
| | | try { |
| | | file.getInputStream().close(); |
| | | } catch (IOException e) { |
| | | e.printStackTrace(); |
| | | } |
| | | } |
| | | } |
| | | return Result.error("æä»¶å¯¼å
¥å¤±è´¥ï¼"); |
| | | }*/ |
| | | |
| | | |
| | | /** |
| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /**å¤ä»¶åç±»id*/ |
| | | @Excel(name = "å¤ä»¶åç±»id", width = 15) |
| | | @ApiModelProperty(value = "å¤ä»¶åç±»id") |
| | | private java.lang.String sparePartCategoryId; |
| | | /**å¤ä»¶ç¼ç */ |
| | |
| | | @ApiModelProperty(value = "è§å") |
| | | private java.lang.String specification; |
| | | /**å¶é å*/ |
| | | @Excel(name = "å¶é å", width = 15) |
| | | @Excel(name = "å¶é å", width = 15,dictTable="mom_base_constructor",dicText="name") |
| | | @ApiModelProperty(value = "å¶é å") |
| | | @Dict(dicCode = "id",dictTable="mom_base_constructor",dicText="name") |
| | | private java.lang.String constructorId; |
| | | /**主åä½id*/ |
| | | @Excel(name = "主åä½id", width = 15) |
| | | @Excel(name = "主åä½", width = 15,dicCode = "id",dictTable="mom_base_unit",dicText="name") |
| | | @ApiModelProperty(value = "主åä½id") |
| | | @Dict(dicCode = "id",dictTable="mom_base_unit",dicText="name") |
| | | private java.lang.String mainUnitId; |
| | | /**è¾
åä½id*/ |
| | | @Excel(name = "è¾
åä½id", width = 15) |
| | | |
| | | @ApiModelProperty(value = "è¾
åä½id") |
| | | @Dict(dicCode = "id",dictTable="mom_base_unit",dicText="name") |
| | | private java.lang.String auxiliaryUnitId; |
| | | |
| | | /**æ¢ç®æ¯ä¾*/ |
| | | @Excel(name = "æ¢ç®æ¯ä¾", width = 15) |
| | | @ApiModelProperty(value = "æ¢ç®æ¯ä¾") |
| | | private java.lang.String conversionRatio; |
| | | |
| | |
| | | @ApiModelProperty(value = "æææ") |
| | | private java.lang.Integer validityPeriod; |
| | | /**æææåä½*/ |
| | | @Excel(name = "æææåä½", width = 15) |
| | | @Excel(name = "æææåä½", width = 15,dictTable="mom_base_unit",dicText="name") |
| | | @ApiModelProperty(value = "æææåä½") |
| | | @Dict(dicCode = "id",dictTable="mom_base_unit",dicText="name") |
| | | private java.lang.String validityPeriodUnitId; |
| | |
| | | @ApiModelProperty(value = "ç§æ·id") |
| | | private java.lang.String tenantId; |
| | | /**å é¤ç¶æ(0-æ£å¸¸,1-å·²å é¤)*/ |
| | | @Excel(name = "å é¤ç¶æ(0-æ£å¸¸,1-å·²å é¤)", width = 15) |
| | | |
| | | |
| | | @ApiModelProperty(value = "å é¤ç¶æ(0-æ£å¸¸,1-å·²å é¤)") |
| | | @TableLogic |
| | | private Integer delFlag = CommonConstant.DEL_FLAG_0; |
| | | /**夿³¨*/ |
| | | @Excel(name = "夿³¨", width = 15) |
| | | |
| | | @ApiModelProperty(value = "夿³¨") |
| | | private java.lang.String remark; |
| | | /**å¤ç¨å段1*/ |
| | | @Excel(name = "å¤ç¨å段1", width = 15) |
| | | |
| | | @ApiModelProperty(value = "å¤ç¨å段1") |
| | | private java.lang.String uda1; |
| | | /**å¤ç¨å段2*/ |
| | | @Excel(name = "å¤ç¨å段2", width = 15) |
| | | |
| | | @ApiModelProperty(value = "å¤ç¨å段2") |
| | | private java.lang.String uda2; |
| | | /**å¤ç¨å段3*/ |
| | | @Excel(name = "å¤ç¨å段3", width = 15) |
| | | |
| | | @ApiModelProperty(value = "å¤ç¨å段3") |
| | | private java.lang.String uda3; |
| | | /**å¤ç¨å段4*/ |
| | | @Excel(name = "å¤ç¨å段4", width = 15) |
| | | |
| | | @ApiModelProperty(value = "å¤ç¨å段4") |
| | | private java.lang.String uda4; |
| | | /**å¤ç¨å段5*/ |
| | | @Excel(name = "å¤ç¨å段5", width = 15) |
| | | |
| | | @ApiModelProperty(value = "å¤ç¨å段5") |
| | | private java.lang.String uda5; |
| | | |
| | |
| | | /** |
| | | * å¤ä»¶id |
| | | */ |
| | | @Excel(name = "å¤ä»¶id", width = 15) |
| | | @ApiModelProperty(value = "å¤ä»¶id") |
| | | private java.lang.String sparePartId; |
| | | /** |
| | |
| | | /** |
| | | * å¶é å |
| | | */ |
| | | @Excel(name = "å¶é å", width = 15) |
| | | @Excel(name = "å¶é å", width = 15,dictTable = "mom_base_constructor", dicCode = "id", dicText = "name") |
| | | @ApiModelProperty(value = "å¶é å") |
| | | @Dict(dictTable = "mom_base_constructor", dicCode = "id", dicText = "name") |
| | | private java.lang.String constructorId; |
| | | /** |
| | | * 主åä½id |
| | | */ |
| | | @Excel(name = "主åä½id", width = 15) |
| | | @Excel(name = "主åä½id", width = 15,dictTable = "mom_base_unit", dicCode = "id", dicText = "name") |
| | | @ApiModelProperty(value = "主åä½id") |
| | | @Dict(dictTable = "mom_base_unit", dicCode = "id", dicText = "name") |
| | | private java.lang.String mainUnitId; |
| | | /** |
| | | * è¾
åä½id |
| | | */ |
| | | @Excel(name = "è¾
åä½id", width = 15) |
| | | |
| | | @ApiModelProperty(value = "è¾
åä½id") |
| | | @Dict(dictTable = "mom_base_unit", dicCode = "id", dicText = "name") |
| | | private java.lang.String auxiliaryUnitId; |
| | | |
| | | @Excel(name = "ä»åºid", width = 15) |
| | | @Excel(name = "ä»åºid", width = 15,dictTable = "mom_base_warehouse", dicCode = "id", dicText = "name") |
| | | @ApiModelProperty(value = "ä»åºid") |
| | | @Dict(dictTable = "mom_base_warehouse", dicCode = "id", dicText = "name") |
| | | private java.lang.String warehouseId; |
| | | |
| | | @Excel(name = "åºåºid", width = 15) |
| | | @Excel(name = "åºåºid", width = 15,dictTable = "mom_base_warehouse_area", dicCode = "id", dicText = "name") |
| | | @ApiModelProperty(value = "åºåºid") |
| | | @Dict(dictTable = "mom_base_warehouse_area", dicCode = "id", dicText = "name") |
| | | private java.lang.String warehouseAreaId; |
| | | |
| | | @Excel(name = "åºä½id", width = 15) |
| | | @Excel(name = "åºä½id", width = 15,dictTable = "mom_base_warehouse_location", dicCode = "id", dicText = "name") |
| | | @ApiModelProperty(value = "åºä½id") |
| | | @Dict(dictTable = "mom_base_warehouse_location", dicCode = "id", dicText = "name") |
| | | private java.lang.String warehouseLocationId; |
| | |
| | | /** |
| | | * è¾
æ°é |
| | | */ |
| | | @Excel(name = "è¾
æ°é", width = 15) |
| | | @ApiModelProperty(value = "è¾
æ°é") |
| | | private java.lang.Double auxiliaryQuantity; |
| | | |
| | |
| | | * ä¾åºåid |
| | | */ |
| | | @Excel(name = "ä¾åºåid", width = 15) |
| | | @Dict(dictTable = "mom_base_supplier", dicCode = "id", dicText = "name") |
| | | @ApiModelProperty(value = "ä¾åºåid") |
| | | private String supplierId; |
| | | |
| | |
| | | /** |
| | | * å¤ç¨å段1 |
| | | */ |
| | | @Excel(name = "å¤ç¨å段1", width = 15) |
| | | |
| | | @ApiModelProperty(value = "å¤ç¨å段1") |
| | | private java.lang.String sparesUda1; |
| | | /** |
| | | * å¤ç¨å段2 |
| | | */ |
| | | @Excel(name = "å¤ç¨å段2", width = 15) |
| | | |
| | | @ApiModelProperty(value = "å¤ç¨å段2") |
| | | private java.lang.String sparesUda2; |
| | | /** |
| | | * å¤ç¨å段3 |
| | | */ |
| | | @Excel(name = "å¤ç¨å段3", width = 15) |
| | | |
| | | @ApiModelProperty(value = "å¤ç¨å段3") |
| | | private java.lang.String sparesUda3; |
| | | /** |
| | | * å¤ç¨å段4 |
| | | */ |
| | | @Excel(name = "å¤ç¨å段4", width = 15) |
| | | |
| | | @ApiModelProperty(value = "å¤ç¨å段4") |
| | | private java.lang.String sparesUda4; |
| | | /** |
| | | * å¤ç¨å段5 |
| | | */ |
| | | @Excel(name = "å¤ç¨å段5", width = 15) |
| | | |
| | | @ApiModelProperty(value = "å¤ç¨å段5") |
| | | private java.lang.String sparesUda5; |
| | | |