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 ruoyi
|
|
* @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;
|
|
|
|
}
|