parent
918691bc8f
commit
1df70a1e4f
17 changed files with 509 additions and 280 deletions
@ -1,160 +0,0 @@ |
|||||||
/** |
|
||||||
* BladeX Commercial License Agreement |
|
||||||
* Copyright (c) 2018-2099, https://bladex.cn. All rights reserved.
|
|
||||||
* <p> |
|
||||||
* Use of this software is governed by the Commercial License Agreement |
|
||||||
* obtained after purchasing a license from BladeX. |
|
||||||
* <p> |
|
||||||
* 1. This software is for development use only under a valid license |
|
||||||
* from BladeX. |
|
||||||
* <p> |
|
||||||
* 2. Redistribution of this software's source code to any third party |
|
||||||
* without a commercial license is strictly prohibited. |
|
||||||
* <p> |
|
||||||
* 3. Licensees may copyright their own code but cannot use segments |
|
||||||
* from this software for such purposes. Copyright of this software |
|
||||||
* remains with BladeX. |
|
||||||
* <p> |
|
||||||
* Using this software signifies agreement to this License, and the software |
|
||||||
* must not be used for illegal purposes. |
|
||||||
* <p> |
|
||||||
* THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY. The author is |
|
||||||
* not liable for any claims arising from secondary or illegal development. |
|
||||||
* <p> |
|
||||||
* Author: Chill Zhuang (bladejava@qq.com) |
|
||||||
*/ |
|
||||||
package org.springblade.scheduling.scheduling.controller; |
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
||||||
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
|
||||||
import io.swagger.v3.oas.annotations.Operation; |
|
||||||
import io.swagger.v3.oas.annotations.Parameter; |
|
||||||
import io.swagger.v3.oas.annotations.tags.Tag; |
|
||||||
import jakarta.servlet.http.HttpServletResponse; |
|
||||||
import jakarta.validation.Valid; |
|
||||||
import lombok.AllArgsConstructor; |
|
||||||
import org.springblade.core.boot.ctrl.BladeController; |
|
||||||
import org.springblade.core.excel.util.ExcelUtil; |
|
||||||
import org.springblade.core.mp.support.Condition; |
|
||||||
import org.springblade.core.mp.support.Query; |
|
||||||
import org.springblade.core.secure.BladeUser; |
|
||||||
import org.springblade.core.secure.annotation.IsAdmin; |
|
||||||
import org.springblade.core.tool.api.R; |
|
||||||
import org.springblade.core.tool.utils.DateUtil; |
|
||||||
import org.springblade.core.tool.utils.Func; |
|
||||||
import org.springblade.scheduling.scheduling.entity.DifferentFurnaceTankEntity; |
|
||||||
import org.springblade.scheduling.scheduling.excel.DifferentFurnaceTankExcel; |
|
||||||
import org.springblade.scheduling.scheduling.service.IDifferentFurnaceTankService; |
|
||||||
import org.springblade.scheduling.scheduling.vo.DifferentFurnaceTankVO; |
|
||||||
import org.springblade.scheduling.scheduling.wrapper.DifferentFurnaceTankWrapper; |
|
||||||
import org.springframework.web.bind.annotation.*; |
|
||||||
|
|
||||||
import java.util.List; |
|
||||||
import java.util.Map; |
|
||||||
|
|
||||||
/** |
|
||||||
* 非同炉同槽因素表 控制器 |
|
||||||
* |
|
||||||
* @author BladeX |
|
||||||
* @since 2025-12-18 |
|
||||||
*/ |
|
||||||
@RestController |
|
||||||
@AllArgsConstructor |
|
||||||
@RequestMapping("/differentFurnaceTank") |
|
||||||
@Tag(name = "非同炉同槽因素表", description = "非同炉同槽因素表接口") |
|
||||||
public class DifferentFurnaceTankController extends BladeController { |
|
||||||
|
|
||||||
private final IDifferentFurnaceTankService differentFurnaceTankService; |
|
||||||
|
|
||||||
/** |
|
||||||
* 非同炉同槽因素表 详情 |
|
||||||
*/ |
|
||||||
@GetMapping("/detail") |
|
||||||
@ApiOperationSupport(order = 1) |
|
||||||
@Operation(summary = "详情", description = "传入DifferentFurnaceTank") |
|
||||||
public R<DifferentFurnaceTankVO> detail(DifferentFurnaceTankEntity DifferentFurnaceTank) { |
|
||||||
DifferentFurnaceTankEntity detail = differentFurnaceTankService.getOne(Condition.getQueryWrapper(DifferentFurnaceTank)); |
|
||||||
return R.data(DifferentFurnaceTankWrapper.build().entityVO(detail)); |
|
||||||
} |
|
||||||
/** |
|
||||||
* 非同炉同槽因素表 分页 |
|
||||||
*/ |
|
||||||
@GetMapping("/list") |
|
||||||
@ApiOperationSupport(order = 2) |
|
||||||
@Operation(summary = "分页", description = "传入DifferentFurnaceTank") |
|
||||||
public R<IPage<DifferentFurnaceTankVO>> list(@Parameter(hidden = true) @RequestParam Map<String, Object> DifferentFurnaceTank, Query query) { |
|
||||||
IPage<DifferentFurnaceTankEntity> pages = differentFurnaceTankService.page(Condition.getPage(query), Condition.getQueryWrapper(DifferentFurnaceTank, DifferentFurnaceTankEntity.class)); |
|
||||||
return R.data(DifferentFurnaceTankWrapper.build().pageVO(pages)); |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 非同炉同槽因素表 自定义分页 |
|
||||||
*/ |
|
||||||
@GetMapping("/page") |
|
||||||
@ApiOperationSupport(order = 3) |
|
||||||
@Operation(summary = "分页", description = "传入DifferentFurnaceTank") |
|
||||||
public R<IPage<DifferentFurnaceTankVO>> page(DifferentFurnaceTankVO DifferentFurnaceTank, Query query) { |
|
||||||
IPage<DifferentFurnaceTankVO> pages = differentFurnaceTankService.selectDifferentFurnaceTankPage(Condition.getPage(query), DifferentFurnaceTank); |
|
||||||
return R.data(pages); |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 非同炉同槽因素表 新增 |
|
||||||
*/ |
|
||||||
@PostMapping("/save") |
|
||||||
@ApiOperationSupport(order = 4) |
|
||||||
@Operation(summary = "新增", description = "传入DifferentFurnaceTank") |
|
||||||
public R save(@Valid @RequestBody DifferentFurnaceTankEntity DifferentFurnaceTank) { |
|
||||||
return R.status(differentFurnaceTankService.save(DifferentFurnaceTank)); |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 非同炉同槽因素表 修改 |
|
||||||
*/ |
|
||||||
@PostMapping("/update") |
|
||||||
@ApiOperationSupport(order = 5) |
|
||||||
@Operation(summary = "修改", description = "传入DifferentFurnaceTank") |
|
||||||
public R update(@Valid @RequestBody DifferentFurnaceTankEntity DifferentFurnaceTank) { |
|
||||||
return R.status(differentFurnaceTankService.updateById(DifferentFurnaceTank)); |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 非同炉同槽因素表 新增或修改 |
|
||||||
*/ |
|
||||||
@PostMapping("/submit") |
|
||||||
@ApiOperationSupport(order = 6) |
|
||||||
@Operation(summary = "新增或修改", description = "传入DifferentFurnaceTank") |
|
||||||
public R submit(@Valid @RequestBody DifferentFurnaceTankEntity DifferentFurnaceTank) { |
|
||||||
return R.status(differentFurnaceTankService.saveOrUpdate(DifferentFurnaceTank)); |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 非同炉同槽因素表 删除 |
|
||||||
*/ |
|
||||||
@PostMapping("/remove") |
|
||||||
@ApiOperationSupport(order = 7) |
|
||||||
@Operation(summary = "逻辑删除", description = "传入ids") |
|
||||||
public R remove(@Parameter(description = "主键集合", required = true) @RequestParam String ids) { |
|
||||||
return R.status(differentFurnaceTankService.deleteLogic(Func.toLongList(ids))); |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
/** |
|
||||||
* 导出数据 |
|
||||||
*/ |
|
||||||
@IsAdmin |
|
||||||
@GetMapping("/export") |
|
||||||
@ApiOperationSupport(order = 9) |
|
||||||
@Operation(summary = "导出数据", description = "传入DifferentFurnaceTank") |
|
||||||
public void export(@Parameter(hidden = true) @RequestParam Map<String, Object> DifferentFurnaceTank, BladeUser bladeUser, HttpServletResponse response) { |
|
||||||
QueryWrapper<DifferentFurnaceTankEntity> queryWrapper = Condition.getQueryWrapper(DifferentFurnaceTank, DifferentFurnaceTankEntity.class); |
|
||||||
//if (!AuthUtil.isAdministrator()) {
|
|
||||||
// queryWrapper.lambda().eq(DifferentFurnaceTank::getTenantId, bladeUser.getTenantId());
|
|
||||||
//}
|
|
||||||
//queryWrapper.lambda().eq(DifferentFurnaceTankEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED);
|
|
||||||
List<DifferentFurnaceTankExcel> list = differentFurnaceTankService.export(queryWrapper); |
|
||||||
ExcelUtil.export(response, "非同炉同槽因素表数据" + DateUtil.time(), "非同炉同槽因素表数据表", list, DifferentFurnaceTankExcel.class); |
|
||||||
} |
|
||||||
|
|
||||||
} |
|
||||||
@ -0,0 +1,161 @@ |
|||||||
|
/** |
||||||
|
* BladeX Commercial License Agreement |
||||||
|
* Copyright (c) 2018-2099, https://bladex.cn. All rights reserved.
|
||||||
|
* <p> |
||||||
|
* Use of this software is governed by the Commercial License Agreement |
||||||
|
* obtained after purchasing a license from BladeX. |
||||||
|
* <p> |
||||||
|
* 1. This software is for development use only under a valid license |
||||||
|
* from BladeX. |
||||||
|
* <p> |
||||||
|
* 2. Redistribution of this software's source code to any third party |
||||||
|
* without a commercial license is strictly prohibited. |
||||||
|
* <p> |
||||||
|
* 3. Licensees may copyright their own code but cannot use segments |
||||||
|
* from this software for such purposes. Copyright of this software |
||||||
|
* remains with BladeX. |
||||||
|
* <p> |
||||||
|
* Using this software signifies agreement to this License, and the software |
||||||
|
* must not be used for illegal purposes. |
||||||
|
* <p> |
||||||
|
* THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY. The author is |
||||||
|
* not liable for any claims arising from secondary or illegal development. |
||||||
|
* <p> |
||||||
|
* Author: Chill Zhuang (bladejava@qq.com) |
||||||
|
*/ |
||||||
|
package org.springblade.scheduling.scheduling.controller; |
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.tags.Tag; |
||||||
|
import io.swagger.v3.oas.annotations.Operation; |
||||||
|
import io.swagger.v3.oas.annotations.Parameter; |
||||||
|
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import jakarta.validation.Valid; |
||||||
|
|
||||||
|
import org.springblade.core.secure.BladeUser; |
||||||
|
import org.springblade.core.secure.annotation.IsAdmin; |
||||||
|
import org.springblade.core.mp.support.Condition; |
||||||
|
import org.springblade.core.mp.support.Query; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
import org.springblade.core.tool.utils.Func; |
||||||
|
import org.springblade.scheduling.scheduling.entity.SameTroughEntity; |
||||||
|
import org.springblade.scheduling.scheduling.excel.SameTroughExcel; |
||||||
|
import org.springblade.scheduling.scheduling.service.ISameTroughService; |
||||||
|
import org.springblade.scheduling.scheduling.vo.SameTroughVO; |
||||||
|
import org.springblade.scheduling.scheduling.wrapper.SameTroughWrapper; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import org.springblade.core.boot.ctrl.BladeController; |
||||||
|
import org.springblade.core.tool.utils.DateUtil; |
||||||
|
import org.springblade.core.excel.util.ExcelUtil; |
||||||
|
import org.springblade.core.tool.constant.BladeConstant; |
||||||
|
import java.util.Map; |
||||||
|
import java.util.List; |
||||||
|
import jakarta.servlet.http.HttpServletResponse; |
||||||
|
|
||||||
|
/** |
||||||
|
* 非同槽因素表 控制器 |
||||||
|
* |
||||||
|
* @author BladeX |
||||||
|
* @since 2026-01-07 |
||||||
|
*/ |
||||||
|
@RestController |
||||||
|
@AllArgsConstructor |
||||||
|
@RequestMapping("/sameTrough") |
||||||
|
@Tag(name = "非同槽因素表", description = "非同槽因素表接口") |
||||||
|
public class SameTroughController extends BladeController { |
||||||
|
|
||||||
|
private final ISameTroughService sameTroughService; |
||||||
|
|
||||||
|
/** |
||||||
|
* 非同槽因素表 详情 |
||||||
|
*/ |
||||||
|
@GetMapping("/detail") |
||||||
|
@ApiOperationSupport(order = 1) |
||||||
|
@Operation(summary = "详情", description = "传入SameTrough") |
||||||
|
public R<SameTroughVO> detail(SameTroughEntity sameTrough) { |
||||||
|
SameTroughEntity detail = sameTroughService.getOne(Condition.getQueryWrapper(sameTrough)); |
||||||
|
return R.data(SameTroughWrapper.build().entityVO(detail)); |
||||||
|
} |
||||||
|
/** |
||||||
|
* 非同槽因素表 分页 |
||||||
|
*/ |
||||||
|
@GetMapping("/list") |
||||||
|
@ApiOperationSupport(order = 2) |
||||||
|
@Operation(summary = "分页", description = "传入SameTrough") |
||||||
|
public R<IPage<SameTroughVO>> list(@Parameter(hidden = true) @RequestParam Map<String, Object> sameTrough, Query query) { |
||||||
|
IPage<SameTroughEntity> pages = sameTroughService.page(Condition.getPage(query), Condition.getQueryWrapper(sameTrough, SameTroughEntity.class)); |
||||||
|
return R.data(SameTroughWrapper.build().pageVO(pages)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 非同槽因素表 自定义分页 |
||||||
|
*/ |
||||||
|
@GetMapping("/page") |
||||||
|
@ApiOperationSupport(order = 3) |
||||||
|
@Operation(summary = "分页", description = "传入SameTrough") |
||||||
|
public R<IPage<SameTroughVO>> page(SameTroughVO sameTrough, Query query) { |
||||||
|
IPage<SameTroughVO> pages = sameTroughService.selectSameTroughPage(Condition.getPage(query), sameTrough); |
||||||
|
return R.data(pages); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 非同槽因素表 新增 |
||||||
|
*/ |
||||||
|
@PostMapping("/save") |
||||||
|
@ApiOperationSupport(order = 4) |
||||||
|
@Operation(summary = "新增", description = "传入SameTrough") |
||||||
|
public R save(@Valid @RequestBody SameTroughEntity sameTrough) { |
||||||
|
return R.status(sameTroughService.save(sameTrough)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 非同槽因素表 修改 |
||||||
|
*/ |
||||||
|
@PostMapping("/update") |
||||||
|
@ApiOperationSupport(order = 5) |
||||||
|
@Operation(summary = "修改", description = "传入SameTrough") |
||||||
|
public R update(@Valid @RequestBody SameTroughEntity sameTrough) { |
||||||
|
return R.status(sameTroughService.updateById(sameTrough)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 非同槽因素表 新增或修改 |
||||||
|
*/ |
||||||
|
@PostMapping("/submit") |
||||||
|
@ApiOperationSupport(order = 6) |
||||||
|
@Operation(summary = "新增或修改", description = "传入SameTrough") |
||||||
|
public R submit(@Valid @RequestBody SameTroughEntity sameTrough) { |
||||||
|
return R.status(sameTroughService.saveOrUpdate(sameTrough)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 非同槽因素表 删除 |
||||||
|
*/ |
||||||
|
@PostMapping("/remove") |
||||||
|
@ApiOperationSupport(order = 7) |
||||||
|
@Operation(summary = "逻辑删除", description = "传入ids") |
||||||
|
public R remove(@Parameter(description = "主键集合", required = true) @RequestParam String ids) { |
||||||
|
return R.status(sameTroughService.deleteLogic(Func.toLongList(ids))); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 导出数据 |
||||||
|
*/ |
||||||
|
@IsAdmin |
||||||
|
@GetMapping("/export") |
||||||
|
@ApiOperationSupport(order = 9) |
||||||
|
@Operation(summary = "导出数据", description = "传入SameTrough") |
||||||
|
public void export(@Parameter(hidden = true) @RequestParam Map<String, Object> sameTrough, BladeUser bladeUser, HttpServletResponse response) { |
||||||
|
QueryWrapper<SameTroughEntity> queryWrapper = Condition.getQueryWrapper(sameTrough, SameTroughEntity.class); |
||||||
|
//if (!AuthUtil.isAdministrator()) {
|
||||||
|
// queryWrapper.lambda().eq(SameTrough::getTenantId, bladeUser.getTenantId());
|
||||||
|
//}
|
||||||
|
//queryWrapper.lambda().eq(SameTroughEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED);
|
||||||
|
List<SameTroughExcel> list = sameTroughService.export(queryWrapper); |
||||||
|
ExcelUtil.export(response, "非同槽因素表数据" + DateUtil.time(), "非同槽因素表数据表", list, SameTroughExcel.class); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,171 @@ |
|||||||
|
/** |
||||||
|
* BladeX Commercial License Agreement |
||||||
|
* Copyright (c) 2018-2099, https://bladex.cn. All rights reserved.
|
||||||
|
* <p> |
||||||
|
* Use of this software is governed by the Commercial License Agreement |
||||||
|
* obtained after purchasing a license from BladeX. |
||||||
|
* <p> |
||||||
|
* 1. This software is for development use only under a valid license |
||||||
|
* from BladeX. |
||||||
|
* <p> |
||||||
|
* 2. Redistribution of this software's source code to any third party |
||||||
|
* without a commercial license is strictly prohibited. |
||||||
|
* <p> |
||||||
|
* 3. Licensees may copyright their own code but cannot use segments |
||||||
|
* from this software for such purposes. Copyright of this software |
||||||
|
* remains with BladeX. |
||||||
|
* <p> |
||||||
|
* Using this software signifies agreement to this License, and the software |
||||||
|
* must not be used for illegal purposes. |
||||||
|
* <p> |
||||||
|
* THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY. The author is |
||||||
|
* not liable for any claims arising from secondary or illegal development. |
||||||
|
* <p> |
||||||
|
* Author: Chill Zhuang (bladejava@qq.com) |
||||||
|
*/ |
||||||
|
package org.springblade.scheduling.scheduling.excel; |
||||||
|
|
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.math.BigDecimal; |
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||||
|
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||||
|
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||||
|
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||||
|
import java.io.Serializable; |
||||||
|
import java.io.Serial; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 非同槽因素表 Excel实体类 |
||||||
|
* |
||||||
|
* @author BladeX |
||||||
|
* @since 2026-01-07 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ColumnWidth(25) |
||||||
|
@HeadRowHeight(20) |
||||||
|
@ContentRowHeight(18) |
||||||
|
public class SameTroughExcel implements Serializable { |
||||||
|
|
||||||
|
@Serial |
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
/** |
||||||
|
* ID |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("ID") |
||||||
|
private BigDecimal id; |
||||||
|
/** |
||||||
|
* 作业中心id |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("作业中心id") |
||||||
|
private BigDecimal workCenterId; |
||||||
|
/** |
||||||
|
* 作业中心名称 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("作业中心名称") |
||||||
|
private String workCenterName; |
||||||
|
/** |
||||||
|
* 工序id |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("工序id") |
||||||
|
private BigDecimal processId; |
||||||
|
/** |
||||||
|
* 工序名称 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("工序名称") |
||||||
|
private String processName; |
||||||
|
/** |
||||||
|
* 工艺id |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("工艺id") |
||||||
|
private BigDecimal craftId; |
||||||
|
/** |
||||||
|
* 工艺名称 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("工艺名称") |
||||||
|
private String craftName; |
||||||
|
/** |
||||||
|
* 键位 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("键位") |
||||||
|
private String keyBinding; |
||||||
|
/** |
||||||
|
* 生产厂家 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("生产厂家") |
||||||
|
private String producter; |
||||||
|
/** |
||||||
|
* 检验编码 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("检验编码") |
||||||
|
private String inspectionCode; |
||||||
|
/** |
||||||
|
* 材料 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("材料") |
||||||
|
private String material; |
||||||
|
/** |
||||||
|
* 厚度 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("厚度") |
||||||
|
private String thickness; |
||||||
|
/** |
||||||
|
* 钝化 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("钝化") |
||||||
|
private String passivation; |
||||||
|
/** |
||||||
|
* 硬度 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("硬度") |
||||||
|
private String hardness; |
||||||
|
/** |
||||||
|
* 生产标识 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("生产标识") |
||||||
|
private String productIdent; |
||||||
|
/** |
||||||
|
* 结构 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("结构") |
||||||
|
private String structure; |
||||||
|
/** |
||||||
|
* 磁性 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("磁性") |
||||||
|
private String magnetism; |
||||||
|
/** |
||||||
|
* 批次号 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("批次号") |
||||||
|
private String batchNo; |
||||||
|
/** |
||||||
|
* 是否已删除 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("是否已删除") |
||||||
|
private Long isDeleted; |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue