- 添加 jcifs 依赖用于共享文件夹操作 - 优化 BOM明细和工艺路线的数据处理逻辑 - 修复材料单位为根时的数量处理问题 - 优化材料属性的设置和处理 - 调整工艺路线的查询和更新逻辑 - 优化日志输出和错误处理
74 lines
1.4 KiB
Java
74 lines
1.4 KiB
Java
package com.ruoyi.system.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
/**
|
|
* 切割问题创建对象 cut_problem_creation
|
|
*
|
|
* @author tzy
|
|
* @date 2024-06-21
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
@TableName("cut_problem_creation")
|
|
public class CutProblemCreation extends BaseEntity {
|
|
|
|
private static final long serialVersionUID=1L;
|
|
|
|
/**
|
|
* 主键ID
|
|
*/
|
|
@TableId(value = "ID",type = IdType.AUTO)
|
|
private Long id;
|
|
/**
|
|
* 问题编号
|
|
*/
|
|
private String problemNumber;
|
|
/**
|
|
* 权重
|
|
*/
|
|
private String rawWeight;
|
|
/**
|
|
* 原料种类
|
|
*/
|
|
private String rawMaterialType;
|
|
/**
|
|
* 原料长度
|
|
*/
|
|
private String rawLength;
|
|
/**
|
|
* 数量
|
|
*/
|
|
private String rawNum;
|
|
/**
|
|
* 坯料种类
|
|
*/
|
|
private String blankMaterialType;
|
|
/**
|
|
* 坯料长度
|
|
*/
|
|
private String blankLength;
|
|
/**
|
|
* 坯料数量
|
|
*/
|
|
private String blankNum;
|
|
/**
|
|
* 损耗
|
|
*/
|
|
private Long lose;
|
|
/**
|
|
* 原料个数
|
|
*/
|
|
private String rawQuantity;
|
|
/**
|
|
* 坯料个数
|
|
*/
|
|
private String blankQuantity;
|
|
|
|
}
|