parent
11e4ca9e69
commit
acb007a235
8 changed files with 149 additions and 25 deletions
@ -0,0 +1,24 @@ |
||||
package org.springblade.desk.produce.pojo.dto; |
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import lombok.Data; |
||||
import org.springblade.desk.order.pojo.entity.YieldOrder; |
||||
import org.springblade.desk.produce.pojo.entity.WorkOrder; |
||||
import org.springblade.desk.produce.pojo.entity.WorkPlan; |
||||
import org.springblade.desk.produce.pojo.enums.WorkOrderEnum; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* <p>Description: 报工调整-保存 </p> |
||||
* |
||||
* @author litao |
||||
*/ |
||||
@Data |
||||
public class UploadPlanDto { |
||||
|
||||
private List<WorkPlan> workPlanList; |
||||
|
||||
} |
||||
@ -0,0 +1,58 @@ |
||||
package org.springblade.desk.produce.pojo.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.mp.base.BaseEntity; |
||||
|
||||
/** |
||||
* 车间作业计划修改日志 实体类 |
||||
* |
||||
* @author BladeX |
||||
*/ |
||||
@Data |
||||
@TableName("MES_WORK_ORDER_ADJUST") |
||||
@Schema(description = "WorkPlanLog对象") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class WorkOrderAdjust extends BaseEntity { |
||||
|
||||
@Schema(description = "车间订单") |
||||
private Long woId; |
||||
|
||||
@Schema(description = "订单编号") |
||||
private String woCode; |
||||
|
||||
@Schema(description = "路线卡号") |
||||
private String cardNo; |
||||
|
||||
@Schema(description = "零件号") |
||||
private String partCode; |
||||
|
||||
@Schema(description = "批次") |
||||
private String batchNo; |
||||
|
||||
@Schema(description = "工序") |
||||
private String ppsName; |
||||
|
||||
@Schema(description = "数量") |
||||
private Double workQty; |
||||
|
||||
@Schema(description = "原班组") |
||||
private String oriMakeTeam; |
||||
|
||||
@Schema(description = "现班组") |
||||
private String makeTeam; |
||||
|
||||
@Schema(description = "原接收人") |
||||
private String oriReceiveMan; |
||||
|
||||
@Schema(description = "现接收人") |
||||
private String receiveMan; |
||||
|
||||
@TableField(exist = false) |
||||
@Schema(description = "调整人") |
||||
private String adjustName; |
||||
|
||||
} |
||||
Loading…
Reference in new issue