6 changed files with 169 additions and 0 deletions
-
15src/main/java/com/heai/modules/production/controller/DailyPlanController.java
-
11src/main/java/com/heai/modules/production/dao/DailyPlanMapper.java
-
119src/main/java/com/heai/modules/production/entity/PartCardPrintData.java
-
10src/main/java/com/heai/modules/production/service/DailyPlanService.java
-
5src/main/java/com/heai/modules/production/service/impl/DailyPlanServiceImpl.java
-
9src/main/resources/mapper/production/DailyPlanMapper.xml
@ -0,0 +1,119 @@ |
|||
package com.heai.modules.production.entity; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import org.springframework.format.annotation.DateTimeFormat; |
|||
|
|||
import java.math.BigDecimal; |
|||
import java.util.Date; |
|||
|
|||
public class PartCardPrintData { |
|||
private String site; |
|||
private String orderNo; |
|||
private int seqNo; |
|||
private String partNo; |
|||
private String partDesc; |
|||
private BigDecimal qtyRequired; |
|||
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|||
private Date sScheduledDate; |
|||
private String operatorName; |
|||
private String techInfo; |
|||
private String remark; |
|||
private Float toExpireDays; |
|||
private String userId; |
|||
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 int getSeqNo() { |
|||
return seqNo; |
|||
} |
|||
|
|||
public void setSeqNo(int seqNo) { |
|||
this.seqNo = seqNo; |
|||
} |
|||
|
|||
public String getPartNo() { |
|||
return partNo; |
|||
} |
|||
|
|||
public void setPartNo(String partNo) { |
|||
this.partNo = partNo; |
|||
} |
|||
|
|||
public String getPartDesc() { |
|||
return partDesc; |
|||
} |
|||
|
|||
public void setPartDesc(String partDesc) { |
|||
this.partDesc = partDesc; |
|||
} |
|||
|
|||
public BigDecimal getQtyRequired() { |
|||
return qtyRequired; |
|||
} |
|||
|
|||
public void setQtyRequired(BigDecimal qtyRequired) { |
|||
this.qtyRequired = qtyRequired; |
|||
} |
|||
|
|||
public Date getsScheduledDate() { |
|||
return sScheduledDate; |
|||
} |
|||
|
|||
public void setsScheduledDate(Date sScheduledDate) { |
|||
this.sScheduledDate = sScheduledDate; |
|||
} |
|||
|
|||
public String getOperatorName() { |
|||
return operatorName; |
|||
} |
|||
|
|||
public void setOperatorName(String operatorName) { |
|||
this.operatorName = operatorName; |
|||
} |
|||
|
|||
public String getTechInfo() { |
|||
return techInfo; |
|||
} |
|||
|
|||
public void setTechInfo(String techInfo) { |
|||
this.techInfo = techInfo; |
|||
} |
|||
|
|||
public String getRemark() { |
|||
return remark; |
|||
} |
|||
|
|||
public void setRemark(String remark) { |
|||
this.remark = remark; |
|||
} |
|||
|
|||
public Float getToExpireDays() { |
|||
return toExpireDays; |
|||
} |
|||
|
|||
public void setToExpireDays(Float toExpireDays) { |
|||
this.toExpireDays = toExpireDays; |
|||
} |
|||
|
|||
public String getUserId() { |
|||
return userId; |
|||
} |
|||
|
|||
public void setUserId(String userId) { |
|||
this.userId = userId; |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue