2 changed files with 81 additions and 14 deletions
-
65src/main/java/com/gaotao/modules/notify/entity/SOIssueNotifyOrderMaterialListDetail.java
-
30src/main/java/com/gaotao/modules/notify/service/impl/NewIssureServiceImpl.java
@ -0,0 +1,65 @@ |
|||
package com.gaotao.modules.notify.entity; |
|||
|
|||
import com.baomidou.mybatisplus.annotation.TableName; |
|||
import lombok.Data; |
|||
import java.math.BigDecimal; |
|||
|
|||
/** |
|||
* @Description 申请单物料明细记录表 - 数据库表映射 - rqrq |
|||
* @Author rqrq |
|||
* @Date 2025/01/06 |
|||
*/ |
|||
@Data |
|||
@TableName("SOIssueNotifyOrderMaterialList_detail") |
|||
public class SOIssueNotifyOrderMaterialListDetail { |
|||
|
|||
/** |
|||
* 工厂编码 |
|||
*/ |
|||
private String site; |
|||
|
|||
/** |
|||
* 申请单号 |
|||
*/ |
|||
private String notifyNo; |
|||
|
|||
/** |
|||
* 申请单序号 |
|||
*/ |
|||
private BigDecimal itemNo; |
|||
|
|||
/** |
|||
* BOM行号 |
|||
*/ |
|||
private String bomItemNo; |
|||
|
|||
/** |
|||
* 序列号(条码号) |
|||
*/ |
|||
private String serialNo; |
|||
|
|||
/** |
|||
* 任务编号 |
|||
*/ |
|||
private String taskRef; |
|||
|
|||
/** |
|||
* 任务行号 |
|||
*/ |
|||
private Integer taskItem; |
|||
|
|||
/** |
|||
* 任务序号 |
|||
*/ |
|||
private Integer taskSeq; |
|||
|
|||
/** |
|||
* WCS推送标志(Y/N) |
|||
*/ |
|||
private String outWcsFlag; |
|||
|
|||
/** |
|||
* 发料标志(Y/N) |
|||
*/ |
|||
private String issureFlag; |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue