8 changed files with 530 additions and 1 deletions
-
80src/main/java/com/jtem/modules/Schedule/controller/ScheduleController.java
-
61src/main/java/com/jtem/modules/Schedule/dao/ScheduleMapper.java
-
57src/main/java/com/jtem/modules/Schedule/service/ScheduleService.java
-
71src/main/java/com/jtem/modules/Schedule/service/impl/ScheduleServiceImpl.java
-
3src/main/java/com/jtem/modules/pda/entity/SfdcToolingHist.java
-
22src/main/java/com/jtem/modules/pda/entity/ToolOutData.java
-
201src/main/java/com/jtem/modules/toolMan/entity/SfdcToolingHistData.java
-
36src/main/resources/mapper/schedule/ScheduleMapper.xml
@ -0,0 +1,22 @@ |
|||
package com.jtem.modules.pda.entity; |
|||
|
|||
public class ToolOutData extends SfdcToolingHist{ |
|||
private String toolId; |
|||
private String toolDesc; |
|||
|
|||
public String getToolId() { |
|||
return toolId; |
|||
} |
|||
|
|||
public void setToolId(String toolId) { |
|||
this.toolId = toolId; |
|||
} |
|||
|
|||
public String getToolDesc() { |
|||
return toolDesc; |
|||
} |
|||
|
|||
public void setToolDesc(String toolDesc) { |
|||
this.toolDesc = toolDesc; |
|||
} |
|||
} |
|||
@ -0,0 +1,201 @@ |
|||
package com.jtem.modules.toolMan.entity; |
|||
|
|||
import java.util.Date; |
|||
|
|||
public class SfdcToolingHistData { |
|||
/** |
|||
* 工厂编号 |
|||
*/ |
|||
private String site; |
|||
|
|||
/** |
|||
* 生产订单订单号 |
|||
*/ |
|||
private String orderNo; |
|||
|
|||
/** |
|||
* 工序号 |
|||
*/ |
|||
private Double itemNo; |
|||
|
|||
/** |
|||
* 派工单单号 |
|||
*/ |
|||
private Integer seqNo; |
|||
|
|||
/** |
|||
* 报告的次序号,同一个派工单从1开始编制 |
|||
*/ |
|||
private Integer histSeqNo; |
|||
|
|||
/** |
|||
* 报告日期 |
|||
*/ |
|||
private Date reportDate; |
|||
|
|||
/** |
|||
* 报告人 |
|||
*/ |
|||
private String reportedby; |
|||
|
|||
/** |
|||
* 工具实例编号 |
|||
*/ |
|||
private String toolInstanceID; |
|||
|
|||
/** |
|||
* 开始使用时间 |
|||
*/ |
|||
private Date startDate; |
|||
|
|||
/** |
|||
* 结束使用时间 |
|||
*/ |
|||
private Date finishDate; |
|||
|
|||
/** |
|||
* 是否结束 |
|||
*/ |
|||
private String finishFlag; |
|||
|
|||
/** |
|||
* 备注 |
|||
*/ |
|||
private String remark; |
|||
|
|||
/** |
|||
* 上机时的卷号 |
|||
*/ |
|||
private String startFromRollNo; |
|||
|
|||
/** |
|||
* 生产数量 |
|||
*/ |
|||
private Double finishQty; |
|||
|
|||
/** |
|||
* 卷号 |
|||
*/ |
|||
private String rollNo; |
|||
|
|||
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 Double getItemNo() { |
|||
return itemNo; |
|||
} |
|||
|
|||
public void setItemNo(Double itemNo) { |
|||
this.itemNo = itemNo; |
|||
} |
|||
|
|||
public Integer getSeqNo() { |
|||
return seqNo; |
|||
} |
|||
|
|||
public void setSeqNo(Integer seqNo) { |
|||
this.seqNo = seqNo; |
|||
} |
|||
|
|||
public Integer getHistSeqNo() { |
|||
return histSeqNo; |
|||
} |
|||
|
|||
public void setHistSeqNo(Integer histSeqNo) { |
|||
this.histSeqNo = histSeqNo; |
|||
} |
|||
|
|||
public Date getReportDate() { |
|||
return reportDate; |
|||
} |
|||
|
|||
public void setReportDate(Date reportDate) { |
|||
this.reportDate = reportDate; |
|||
} |
|||
|
|||
public String getReportedby() { |
|||
return reportedby; |
|||
} |
|||
|
|||
public void setReportedby(String reportedby) { |
|||
this.reportedby = reportedby; |
|||
} |
|||
|
|||
public String getToolInstanceID() { |
|||
return toolInstanceID; |
|||
} |
|||
|
|||
public void setToolInstanceID(String toolInstanceID) { |
|||
this.toolInstanceID = toolInstanceID; |
|||
} |
|||
|
|||
public Date getStartDate() { |
|||
return startDate; |
|||
} |
|||
|
|||
public void setStartDate(Date startDate) { |
|||
this.startDate = startDate; |
|||
} |
|||
|
|||
public Date getFinishDate() { |
|||
return finishDate; |
|||
} |
|||
|
|||
public void setFinishDate(Date finishDate) { |
|||
this.finishDate = finishDate; |
|||
} |
|||
|
|||
public String getFinishFlag() { |
|||
return finishFlag; |
|||
} |
|||
|
|||
public void setFinishFlag(String finishFlag) { |
|||
this.finishFlag = finishFlag; |
|||
} |
|||
|
|||
public String getRemark() { |
|||
return remark; |
|||
} |
|||
|
|||
public void setRemark(String remark) { |
|||
this.remark = remark; |
|||
} |
|||
|
|||
public String getStartFromRollNo() { |
|||
return startFromRollNo; |
|||
} |
|||
|
|||
public void setStartFromRollNo(String startFromRollNo) { |
|||
this.startFromRollNo = startFromRollNo; |
|||
} |
|||
|
|||
public Double getFinishQty() { |
|||
return finishQty; |
|||
} |
|||
|
|||
public void setFinishQty(Double finishQty) { |
|||
this.finishQty = finishQty; |
|||
} |
|||
|
|||
public String getRollNo() { |
|||
return rollNo; |
|||
} |
|||
|
|||
public void setRollNo(String rollNo) { |
|||
this.rollNo = rollNo; |
|||
} |
|||
} |
|||
|
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue