在版本管理页面中,新增方案参数的显示和编辑功能。用户可以通过操作按钮对方案点位和参数进行编辑和删除。后端服务也进行了相应的调整,以支持方案参数的增删改查操作。此更新提升了用户在管理方案时的灵活性和便捷性。
55 lines
1.3 KiB
Java
55 lines
1.3 KiB
Java
package com.klp.domain.vo;
|
|
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 方案参数视图对象 wms_process_plan_param
|
|
*
|
|
* @author klp
|
|
*/
|
|
@Data
|
|
@ExcelIgnoreUnannotated
|
|
public class WmsProcessPlanParamVo {
|
|
|
|
@ExcelProperty(value = "参数ID")
|
|
private Long paramId;
|
|
|
|
@ExcelProperty(value = "方案点位ID")
|
|
private Long planId;
|
|
|
|
@ExcelProperty(value = "参数编码")
|
|
private String paramCode;
|
|
|
|
@ExcelProperty(value = "参数名称")
|
|
private String paramName;
|
|
|
|
@ExcelProperty(value = "设定值")
|
|
private BigDecimal targetValue;
|
|
|
|
@ExcelProperty(value = "下限")
|
|
private BigDecimal lowerLimit;
|
|
|
|
@ExcelProperty(value = "上限")
|
|
private BigDecimal upperLimit;
|
|
|
|
@ExcelProperty(value = "单位")
|
|
private String unit;
|
|
|
|
@ExcelProperty(value = "备注")
|
|
private String remark;
|
|
|
|
@ExcelProperty(value = "创建时间")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
private Date createTime;
|
|
|
|
@ExcelProperty(value = "更新时间")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
private Date updateTime;
|
|
}
|