7 changed files with 454 additions and 3 deletions
-
75src/main/java/com/jtem/modules/Schedule/controller/ScheduleController.java
-
49src/main/java/com/jtem/modules/Schedule/dao/ScheduleMapper.java
-
50src/main/java/com/jtem/modules/Schedule/entity/SfdcCancel.java
-
50src/main/java/com/jtem/modules/Schedule/entity/StartSeqNoData.java
-
50src/main/java/com/jtem/modules/Schedule/service/ScheduleService.java
-
107src/main/java/com/jtem/modules/Schedule/service/impl/ScheduleServiceImpl.java
-
76src/main/resources/mapper/schedule/ScheduleMapper.xml
@ -0,0 +1,50 @@ |
|||
package com.jtem.modules.Schedule.entity; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import lombok.Data; |
|||
import org.springframework.format.annotation.DateTimeFormat; |
|||
|
|||
import java.math.BigDecimal; |
|||
import java.util.Date; |
|||
|
|||
@Data |
|||
public class SfdcCancel { |
|||
private String site; |
|||
private String orderNo; |
|||
private Double itemNo; |
|||
private Double stopTime; |
|||
private String operationDesc; |
|||
private Integer seqNo; |
|||
private String partNo; |
|||
private String partSpec; |
|||
private String partDesc; |
|||
private String workCenterNo; |
|||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|||
private Date reportDate; |
|||
private String operatorId; |
|||
private String operatorName; |
|||
private BigDecimal reportQty; |
|||
private BigDecimal approveQty; |
|||
private BigDecimal reportedManfTime; |
|||
private Integer assJobSeqNo; |
|||
private String shiftNo; |
|||
private String shiftDesc; |
|||
private String resourceId; |
|||
private String resourceDesc; |
|||
private String batchNo; |
|||
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|||
private Date startDate; |
|||
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|||
private Date endDate; |
|||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|||
private Date statisticDate; |
|||
private String reverseflag; |
|||
private Double reportWeight; |
|||
private Double approveWeight; |
|||
private Double moldQty; |
|||
private BigDecimal wasteWeight; |
|||
} |
|||
@ -0,0 +1,50 @@ |
|||
package com.jtem.modules.Schedule.entity; |
|||
|
|||
public class StartSeqNoData { |
|||
|
|||
private String site; |
|||
private String username; |
|||
private Integer seqNo; |
|||
private String flag; |
|||
private String tvId; |
|||
|
|||
public String getSite() { |
|||
return site; |
|||
} |
|||
|
|||
public void setSite(String site) { |
|||
this.site = site; |
|||
} |
|||
|
|||
public String getUsername() { |
|||
return username; |
|||
} |
|||
|
|||
public void setUsername(String username) { |
|||
this.username = username; |
|||
} |
|||
|
|||
public Integer getSeqNo() { |
|||
return seqNo; |
|||
} |
|||
|
|||
public void setSeqNo(Integer seqNo) { |
|||
this.seqNo = seqNo; |
|||
} |
|||
|
|||
public String getFlag() { |
|||
return flag; |
|||
} |
|||
|
|||
public void setFlag(String flag) { |
|||
this.flag = flag; |
|||
} |
|||
|
|||
public String getTvId() { |
|||
return tvId; |
|||
} |
|||
|
|||
public void setTvId(String tvId) { |
|||
this.tvId = tvId; |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue