You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
152 lines
3.0 KiB
152 lines
3.0 KiB
package com.spring.modules.part.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.spring.common.utils.QueryPage;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
@Data
|
|
@TableName("plm_routing_component")
|
|
public class RoutingComponentEntity extends QueryPage implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* 工厂
|
|
**/
|
|
private String site;
|
|
/**
|
|
* 物料编码
|
|
**/
|
|
private String partNo;
|
|
/**
|
|
* routing版本号
|
|
**/
|
|
private Integer routingRevision;
|
|
/**
|
|
* routing类型
|
|
**/
|
|
private String routingType;
|
|
/**
|
|
* 替代编码
|
|
**/
|
|
private String alternativeNo;
|
|
/**
|
|
* 工序ID
|
|
**/
|
|
private Integer operationId;
|
|
/**
|
|
* 工序编码
|
|
**/
|
|
private Integer operationNo;
|
|
/**
|
|
* 工序名称
|
|
**/
|
|
private String operationName;
|
|
/**
|
|
* 机器效率(默认100%)
|
|
**/
|
|
private BigDecimal efficiencyFactor;
|
|
/**
|
|
* 机器运行速度
|
|
**/
|
|
private BigDecimal machRunFactor;
|
|
/**
|
|
* 调机时长
|
|
**/
|
|
private BigDecimal machSetupTime;
|
|
/**
|
|
* 单位/小时、小时/单位
|
|
* A、单位/小时
|
|
* B、小时/单位
|
|
* C、小时
|
|
**/
|
|
private String runTimeCode;
|
|
/**
|
|
*
|
|
**/
|
|
private BigDecimal laborRunFactor;
|
|
/**
|
|
* 人工生产速度
|
|
**/
|
|
private BigDecimal laborSetupTime;
|
|
/**
|
|
* 生产过程中人数
|
|
**/
|
|
private Integer crewSize;
|
|
/**
|
|
* 调机过程中人数
|
|
**/
|
|
private Integer setupCrewSize;
|
|
/**
|
|
* 外协时的采购料号
|
|
**/
|
|
private String outsideOpItem;
|
|
/**
|
|
* 机台
|
|
**/
|
|
private String machineNo;
|
|
/**
|
|
* 加工中心
|
|
**/
|
|
private String workCenterNo;
|
|
/**
|
|
* 人员等级
|
|
**/
|
|
private String laborClassNo;
|
|
|
|
private String itemType;
|
|
/**
|
|
* 调机时的人员等级
|
|
**/
|
|
private String setupLaborClassNo;
|
|
/**
|
|
* 前道工序生产X个时,下道工序可开工生产
|
|
**/
|
|
private Integer overlap;
|
|
/**
|
|
* 备注
|
|
**/
|
|
private String noteText;
|
|
/**
|
|
* 创建时间
|
|
**/
|
|
@TableField(fill = FieldFill.INSERT)
|
|
private Date createDate;
|
|
/**
|
|
* 创建人
|
|
**/
|
|
private String createBy;
|
|
/**
|
|
* 更新时间
|
|
**/
|
|
@TableField(fill = FieldFill.UPDATE)
|
|
private Date updateDate;
|
|
/**
|
|
* 更新人
|
|
**/
|
|
private String updateBy;
|
|
/**
|
|
* 备注
|
|
**/
|
|
@TableField(exist = false)
|
|
private String componentNoteText;
|
|
/**
|
|
* 数据集
|
|
*/
|
|
@TableField(exist = false)
|
|
private List<RoutingComponentEntity> informationList;
|
|
/**
|
|
* ifs
|
|
**/
|
|
private String ifsRowId;
|
|
/**
|
|
* ifs
|
|
**/
|
|
private String ifsRowVersion;
|
|
}
|