在版本管理页面中,新增方案参数的显示和编辑功能。用户可以通过操作按钮对方案点位和参数进行编辑和删除。后端服务也进行了相应的调整,以支持方案参数的增删改查操作。此更新提升了用户在管理方案时的灵活性和便捷性。
67 lines
1.1 KiB
Java
67 lines
1.1 KiB
Java
package com.klp.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.klp.common.core.domain.BaseEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
/**
|
|
* 方案参数对象 wms_process_plan_param
|
|
*
|
|
* @author klp
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
@TableName("wms_process_plan_param")
|
|
public class WmsProcessPlanParam extends BaseEntity {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@TableId(value = "param_id")
|
|
private Long paramId;
|
|
|
|
/**
|
|
* 方案点位ID
|
|
*/
|
|
private Long planId;
|
|
|
|
/**
|
|
* 参数编码
|
|
*/
|
|
private String paramCode;
|
|
|
|
/**
|
|
* 参数名称
|
|
*/
|
|
private String paramName;
|
|
|
|
/**
|
|
* 设定值
|
|
*/
|
|
private BigDecimal targetValue;
|
|
|
|
/**
|
|
* 下限
|
|
*/
|
|
private BigDecimal lowerLimit;
|
|
|
|
/**
|
|
* 上限
|
|
*/
|
|
private BigDecimal upperLimit;
|
|
|
|
/**
|
|
* 单位
|
|
*/
|
|
private String unit;
|
|
|
|
@TableLogic
|
|
private Integer delFlag;
|
|
|
|
private String remark;
|
|
}
|