4 changed files with 247 additions and 0 deletions
-
100src/main/java/com/letian/modules/production/entity/SoScheduleRmMoveData.java
-
46src/main/java/com/letian/modules/production/entity/SoScheduleRmStockCheckData.java
-
13src/main/java/com/letian/modules/production/service/DailyPlanService.java
-
88src/main/java/com/letian/modules/production/service/impl/DailyPlanServiceImpl.java
@ -0,0 +1,100 @@ |
|||||
|
package com.letian.modules.production.entity; |
||||
|
|
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||
|
|
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* 排产原材料移库存储过程 {@code SO_Schedule_MoveRM} 入参 - rqrq |
||||
|
* |
||||
|
* @author rqrq |
||||
|
*/ |
||||
|
public class SoScheduleRmMoveData { |
||||
|
|
||||
|
private String site; |
||||
|
private String orderNo; |
||||
|
private Float scheduleQty; |
||||
|
private String fromWarehouseID; |
||||
|
private String toWarehouseID; |
||||
|
|
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
||||
|
private Date transDate; |
||||
|
|
||||
|
private String userID; |
||||
|
private String receiver; |
||||
|
private String partnerID; |
||||
|
|
||||
|
public String getSite() { |
||||
|
return site; |
||||
|
} |
||||
|
|
||||
|
public void setSite(String site) { |
||||
|
this.site = site; |
||||
|
} |
||||
|
|
||||
|
public String getOrderNo() { |
||||
|
return orderNo; |
||||
|
} |
||||
|
|
||||
|
public void setOrderNo(String orderNo) { |
||||
|
this.orderNo = orderNo; |
||||
|
} |
||||
|
|
||||
|
public Float getScheduleQty() { |
||||
|
return scheduleQty; |
||||
|
} |
||||
|
|
||||
|
public void setScheduleQty(Float scheduleQty) { |
||||
|
this.scheduleQty = scheduleQty; |
||||
|
} |
||||
|
|
||||
|
public String getFromWarehouseID() { |
||||
|
return fromWarehouseID; |
||||
|
} |
||||
|
|
||||
|
public void setFromWarehouseID(String fromWarehouseID) { |
||||
|
this.fromWarehouseID = fromWarehouseID; |
||||
|
} |
||||
|
|
||||
|
public String getToWarehouseID() { |
||||
|
return toWarehouseID; |
||||
|
} |
||||
|
|
||||
|
public void setToWarehouseID(String toWarehouseID) { |
||||
|
this.toWarehouseID = toWarehouseID; |
||||
|
} |
||||
|
|
||||
|
public Date getTransDate() { |
||||
|
return transDate; |
||||
|
} |
||||
|
|
||||
|
public void setTransDate(Date transDate) { |
||||
|
this.transDate = transDate; |
||||
|
} |
||||
|
|
||||
|
public String getUserID() { |
||||
|
return userID; |
||||
|
} |
||||
|
|
||||
|
public void setUserID(String userID) { |
||||
|
this.userID = userID; |
||||
|
} |
||||
|
|
||||
|
public String getReceiver() { |
||||
|
return receiver; |
||||
|
} |
||||
|
|
||||
|
public void setReceiver(String receiver) { |
||||
|
this.receiver = receiver; |
||||
|
} |
||||
|
|
||||
|
public String getPartnerID() { |
||||
|
return partnerID; |
||||
|
} |
||||
|
|
||||
|
public void setPartnerID(String partnerID) { |
||||
|
this.partnerID = partnerID; |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,46 @@ |
|||||
|
package com.letian.modules.production.entity; |
||||
|
|
||||
|
/** |
||||
|
* 排产原料库存检查存储过程 {@code SO_Schedule_CheckRMStock} 入参 - rqrq |
||||
|
* |
||||
|
* @author rqrq |
||||
|
*/ |
||||
|
public class SoScheduleRmStockCheckData { |
||||
|
|
||||
|
private String site; |
||||
|
private String orderNo; |
||||
|
private Float scheduleQty; |
||||
|
private String fromWarehouseID; |
||||
|
|
||||
|
public String getSite() { |
||||
|
return site; |
||||
|
} |
||||
|
|
||||
|
public void setSite(String site) { |
||||
|
this.site = site; |
||||
|
} |
||||
|
|
||||
|
public String getOrderNo() { |
||||
|
return orderNo; |
||||
|
} |
||||
|
|
||||
|
public void setOrderNo(String orderNo) { |
||||
|
this.orderNo = orderNo; |
||||
|
} |
||||
|
|
||||
|
public Float getScheduleQty() { |
||||
|
return scheduleQty; |
||||
|
} |
||||
|
|
||||
|
public void setScheduleQty(Float scheduleQty) { |
||||
|
this.scheduleQty = scheduleQty; |
||||
|
} |
||||
|
|
||||
|
public String getFromWarehouseID() { |
||||
|
return fromWarehouseID; |
||||
|
} |
||||
|
|
||||
|
public void setFromWarehouseID(String fromWarehouseID) { |
||||
|
this.fromWarehouseID = fromWarehouseID; |
||||
|
} |
||||
|
} |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue