7 changed files with 204 additions and 0 deletions
-
17src/main/java/com/heai/modules/production/controller/OutboundLabelScanController.java
-
7src/main/java/com/heai/modules/production/dao/OutboundLabelScanMapper.java
-
21src/main/java/com/heai/modules/production/entity/OutboundLabelDetailQueryData.java
-
53src/main/java/com/heai/modules/production/entity/OutboundLabelDetailRowData.java
-
5src/main/java/com/heai/modules/production/service/OutboundLabelScanService.java
-
20src/main/java/com/heai/modules/production/service/impl/OutboundLabelScanServiceImpl.java
-
81src/main/resources/mapper/production/OutboundLabelScanMapper.xml
@ -0,0 +1,21 @@ |
|||
package com.heai.modules.production.entity; |
|||
|
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* 发货明细关联主表查询参数 - rqrq |
|||
*/ |
|||
@Data |
|||
public class OutboundLabelDetailQueryData { |
|||
private Integer no; |
|||
private Integer size; |
|||
private String site; |
|||
private String startDate; |
|||
private String endDate; |
|||
private String customerId; |
|||
private String delNotifyNo; |
|||
private String shipFlag; |
|||
private String partDesc; |
|||
private String partNo; |
|||
private String orderNo; |
|||
} |
|||
@ -0,0 +1,53 @@ |
|||
package com.heai.modules.production.entity; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import lombok.Data; |
|||
import org.springframework.format.annotation.DateTimeFormat; |
|||
|
|||
import java.math.BigDecimal; |
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* 发货明细关联主表查询结果 - rqrq |
|||
*/ |
|||
@Data |
|||
public class OutboundLabelDetailRowData { |
|||
private String site; |
|||
private String delNotifyNo; |
|||
private BigDecimal delNotifyItemNo; |
|||
|
|||
private String partNo; |
|||
private String partDescription; |
|||
private String approveResultFlag; |
|||
private BigDecimal notifyQty; |
|||
private BigDecimal shipQty; |
|||
private BigDecimal allNum; |
|||
private String UMId; |
|||
private String orderNo; |
|||
private BigDecimal itemNo; |
|||
private String customerPONo; |
|||
private String orderType; |
|||
private String custPartNo; |
|||
private String intSales; |
|||
private String extSales; |
|||
private String subOrderType; |
|||
private String techInfo; |
|||
private String detailRemark; |
|||
|
|||
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|||
private Date notifyDate; |
|||
private String customerId; |
|||
private String customerName; |
|||
private String billAirwayNo; |
|||
private String forwarderId; |
|||
private String headerRemark; |
|||
private String receiver; |
|||
private String delAddId; |
|||
private String creditFlag; |
|||
private String shipFlag; |
|||
private String shipResult; |
|||
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|||
private Date realShipDate; |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue