9 changed files with 166 additions and 6 deletions
@ -0,0 +1,23 @@ |
|||
package com.qs.serve.modules.pms.entity.dto; |
|||
|
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author YenHex |
|||
* @since 2022/8/12 |
|||
*/ |
|||
@Data |
|||
public class PmsOrderProductStatusBo { |
|||
|
|||
/** OrderProductSn */ |
|||
private String OrderProductSn; |
|||
|
|||
/** |
|||
* 状态: |
|||
* 0:恢复到默认 |
|||
* 1.完成生产(所有产线完成后) |
|||
* 2.关闭订单 |
|||
* */ |
|||
private Integer status; |
|||
|
|||
} |
@ -0,0 +1,34 @@ |
|||
package com.qs.serve.modules.pms.entity.dto; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import lombok.Data; |
|||
import org.hibernate.validator.constraints.Length; |
|||
import org.springframework.format.annotation.DateTimeFormat; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
import java.time.LocalDate; |
|||
import java.time.LocalDateTime; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 生产订单 实体类 |
|||
* @author YenHex |
|||
* @since 2022-08-05 |
|||
*/ |
|||
@Data |
|||
public class PmsOrderStatusBo implements Serializable { |
|||
|
|||
/** 订单id */ |
|||
private String orderId; |
|||
|
|||
/** |
|||
* 状态: |
|||
* 1.开始生产 |
|||
* 2.完成生产(所有产线完成后) |
|||
* 3.关闭订单 |
|||
* */ |
|||
private Integer status; |
|||
|
|||
} |
|||
|
Loading…
Reference in new issue