Merge branch 'master' of http://42.192.7.176:3000/suojin/jonhon-mes-svr
commit
954c32b4ce
31 changed files with 310 additions and 45 deletions
@ -0,0 +1,44 @@ |
|||||||
|
package org.springblade.desk.produce.pojo.dto; |
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
/** |
||||||
|
* 同炉(槽)查询 数据传输对象实体类 |
||||||
|
* |
||||||
|
* @author BladeX |
||||||
|
* @since 2026-02-04 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class MesMacToolUseDTO { |
||||||
|
|
||||||
|
@Schema(description = "绑定编号") |
||||||
|
private String code; |
||||||
|
|
||||||
|
@Schema(description = "车间订单号") |
||||||
|
private String woCode; |
||||||
|
|
||||||
|
@Schema(description = "物料号") |
||||||
|
private String partCode; |
||||||
|
|
||||||
|
@Schema(description = "批次号") |
||||||
|
private String batchNo; |
||||||
|
|
||||||
|
@Schema(description = "设备编号") |
||||||
|
private String deviceCode; |
||||||
|
|
||||||
|
@Schema(description = "挂具编号") |
||||||
|
private String rsCode; |
||||||
|
|
||||||
|
@Schema(description = "飞靶编号") |
||||||
|
private String fsCode; |
||||||
|
|
||||||
|
@Schema(description = "开始时间") |
||||||
|
private Date startTime; |
||||||
|
|
||||||
|
@Schema(description = "结束时间") |
||||||
|
private Date endTime; |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,45 @@ |
|||||||
|
package org.springblade.desk.produce.pojo.vo; |
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* 同炉(槽)查询 视图实体类 |
||||||
|
* |
||||||
|
* @author BladeX |
||||||
|
* @since 2026-02-04 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class MesMacToolUseVO { |
||||||
|
|
||||||
|
@Schema(description = "绑定编号") |
||||||
|
private String code; |
||||||
|
|
||||||
|
@Schema(description = "车间订单号") |
||||||
|
private String woCode; |
||||||
|
|
||||||
|
@Schema(description = "物料号") |
||||||
|
private String partCode; |
||||||
|
|
||||||
|
@Schema(description = "批次号") |
||||||
|
private String batchNo; |
||||||
|
|
||||||
|
@Schema(description = "数量") |
||||||
|
private String makeQty; |
||||||
|
|
||||||
|
@Schema(description = "设备编号") |
||||||
|
private String deviceCode; |
||||||
|
|
||||||
|
@Schema(description = "挂具编号") |
||||||
|
private String rsCode; |
||||||
|
|
||||||
|
@Schema(description = "飞靶编号") |
||||||
|
private String fsCode; |
||||||
|
|
||||||
|
@Schema(description = "绑定时间") |
||||||
|
private String bindTime; |
||||||
|
|
||||||
|
@Schema(description = "绑定人员") |
||||||
|
private String name; |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue