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.
195 lines
3.5 KiB
195 lines
3.5 KiB
package com.spring.modules.part.entity;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.spring.common.utils.QueryPage;
|
|
import lombok.Data;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class RoutingAllFieldEntity extends QueryPage {
|
|
|
|
/**
|
|
* 工厂
|
|
**/
|
|
private String site;
|
|
/**
|
|
* 物料编码
|
|
**/
|
|
private String partNo;
|
|
/**
|
|
* 物料名称
|
|
**/
|
|
private String partDesc;
|
|
/**
|
|
* routing版本号
|
|
**/
|
|
private String routingRevision;
|
|
/**
|
|
* routing类型
|
|
**/
|
|
private String routingType;
|
|
/**
|
|
* 备注
|
|
**/
|
|
private String noteText;
|
|
/**
|
|
* 开始时间
|
|
**/
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
private Date phaseInDate;
|
|
/**
|
|
* 结束时间
|
|
**/
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
private Date phaseOutDate;
|
|
|
|
|
|
/**
|
|
* 替代编码
|
|
**/
|
|
private String alternativeNo;
|
|
/**
|
|
* 替代名称
|
|
**/
|
|
private String alternativeDescription;
|
|
/**
|
|
* 模板编码
|
|
**/
|
|
private String routTemplateId;
|
|
/**
|
|
* 计划编码
|
|
**/
|
|
private Date planDate;
|
|
/**
|
|
*
|
|
**/
|
|
private BigDecimal fixedLeadTimeDay;
|
|
/**
|
|
*
|
|
**/
|
|
private BigDecimal fixedLeadTimeHour;
|
|
/**
|
|
*
|
|
**/
|
|
private BigDecimal variableLeadTimeDay;
|
|
/**
|
|
*
|
|
**/
|
|
private BigDecimal variableLeadTimeHour;
|
|
/**
|
|
*
|
|
**/
|
|
private BigDecimal forStdLotByDay;
|
|
/**
|
|
*
|
|
**/
|
|
private BigDecimal forLotByDay;
|
|
/**
|
|
* 最小订单数
|
|
**/
|
|
private BigDecimal minLotQty;
|
|
/**
|
|
* 明细备注
|
|
**/
|
|
private String detailNoteText;
|
|
|
|
|
|
|
|
/**
|
|
* 工序ID
|
|
**/
|
|
private String operationId;
|
|
/**
|
|
* 工序编码
|
|
**/
|
|
private String operationNo;
|
|
/**
|
|
* 机器效率(默认100%)
|
|
**/
|
|
private BigDecimal efficiencyFactor;
|
|
/**
|
|
* 机器运行速度
|
|
**/
|
|
private BigDecimal machRunFactor;
|
|
/**
|
|
* 调机时长
|
|
**/
|
|
private BigDecimal machSetupTime;
|
|
/**
|
|
* 单位/小时、小时/单位
|
|
**/
|
|
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 setupLaborClassNo;
|
|
/**
|
|
* 前道工序生产X个时,下道工序可开工生产
|
|
**/
|
|
private Integer overlap;
|
|
/**
|
|
* 子物料备注
|
|
**/
|
|
private String componentNoteText;
|
|
|
|
|
|
|
|
/**
|
|
* 创建时间
|
|
**/
|
|
private Date createDate;
|
|
/**
|
|
* 创建人
|
|
**/
|
|
private String createBy;
|
|
/**
|
|
* 更新时间
|
|
**/
|
|
private Date updateDate;
|
|
/**
|
|
* 更新人
|
|
**/
|
|
private String updateBy;
|
|
/**
|
|
* 子物料数据集
|
|
*/
|
|
private List<RoutingComponentEntity> informationList;
|
|
}
|