Compare commits
No commits in common. '118e2075d4cbe821e2b5b3d3b612fb83291f6ade' and 'b50ff5b3c904878ed1e769ee71fa0b7e8b477f76' have entirely different histories.
118e2075d4
...
b50ff5b3c9
26 changed files with 56 additions and 208 deletions
@ -1,24 +0,0 @@ |
|||||||
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; |
|
||||||
|
|
||||||
} |
|
||||||
@ -1,58 +0,0 @@ |
|||||||
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