parent
fbc8aeef86
commit
267ed1ce23
8 changed files with 243 additions and 16 deletions
@ -0,0 +1,71 @@ |
||||
package org.springblade.desk.produce.pojo.vo; |
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import lombok.Data; |
||||
import org.springblade.core.tool.utils.DateUtil; |
||||
import org.springframework.format.annotation.DateTimeFormat; |
||||
|
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* 烧结配套查询 视图实体类 |
||||
* |
||||
* @author litao |
||||
*/ |
||||
@Data |
||||
public class SjCompleteVO { |
||||
|
||||
@Schema(description = "生产订单id") |
||||
private Long yoId; |
||||
|
||||
@Schema(description = "车间订单id") |
||||
private Long woId; |
||||
|
||||
@Schema(description = "生产订单号") |
||||
private String yoCode; |
||||
|
||||
@Schema(description = "车间订单号") |
||||
private String woCode; |
||||
|
||||
@Schema(description = "零件号") |
||||
private String partCode; |
||||
|
||||
@Schema(description = "零件名称") |
||||
private String partName; |
||||
|
||||
@Schema(description = "产品型号") |
||||
private String productType; |
||||
|
||||
@Schema(description = "批次号") |
||||
private String batchNo; |
||||
|
||||
@Schema(description = "流程卡号") |
||||
private String cardNo; |
||||
|
||||
@Schema(description = "生产标识") |
||||
private String productIdent; |
||||
|
||||
@Schema(description = "生产数量") |
||||
private Double ypQty; |
||||
|
||||
@Schema(description = "面积(d㎡)") |
||||
private Double ypArea; |
||||
|
||||
@Schema(description = "订单优先级(key)") |
||||
private Integer priorityErp; |
||||
|
||||
@Schema(description = "订单优先级(名称)") |
||||
private String priorityErpName; |
||||
|
||||
@Schema(description = "计划下达时间") |
||||
@DateTimeFormat(pattern = DateUtil.PATTERN_DATETIME) |
||||
@JsonFormat(pattern = DateUtil.PATTERN_DATETIME) |
||||
private Date releaseDate; |
||||
|
||||
@Schema(description = "镀后入库时间") |
||||
@DateTimeFormat(pattern = DateUtil.PATTERN_DATETIME) |
||||
@JsonFormat(pattern = DateUtil.PATTERN_DATETIME) |
||||
private Date putStoreTime; |
||||
|
||||
} |
||||
Loading…
Reference in new issue