5 changed files with 192 additions and 8 deletions
-
16src/main/java/com/gaotao/modules/schedule/controller/SchedulingController.java
-
112src/main/java/com/gaotao/modules/schedule/data/OperatorInData.java
-
2src/main/java/com/gaotao/modules/schedule/data/SearchScheduleData.java
-
9src/main/java/com/gaotao/modules/schedule/service/SchedulingService.java
-
61src/main/java/com/gaotao/modules/schedule/service/impl/SchedulingServiceImpl.java
@ -0,0 +1,112 @@ |
|||
package com.gaotao.modules.schedule.data; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import org.apache.ibatis.type.Alias; |
|||
import org.springframework.format.annotation.DateTimeFormat; |
|||
|
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* @author LR |
|||
* @Title: operatorData |
|||
* 操作员信息 |
|||
* @Date 2021/11/4 11:16 |
|||
*/ |
|||
@Alias("OperatorInData") |
|||
public class OperatorInData extends BaseData { |
|||
private String username; |
|||
private String operatorId; |
|||
private String operatorName; |
|||
private String status; |
|||
private String showFlag; |
|||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|||
private Date lastScheduledTime;//最后排产时间 |
|||
private Float efficiency;//效率 |
|||
private Float qtyToSchedule;//带排产数量 |
|||
private String calendarId;//工作日历 |
|||
private String virturlFlag;//虚拟机台 |
|||
|
|||
public OperatorInData() { |
|||
} |
|||
|
|||
public String getUsername() { |
|||
return username; |
|||
} |
|||
|
|||
public void setUsername(String username) { |
|||
this.username = username; |
|||
} |
|||
|
|||
public String getOperatorId() { |
|||
return operatorId; |
|||
} |
|||
|
|||
public void setOperatorId(String operatorId) { |
|||
this.operatorId = operatorId; |
|||
} |
|||
|
|||
public String getOperatorName() { |
|||
return operatorName; |
|||
} |
|||
|
|||
public void setOperatorName(String operatorName) { |
|||
this.operatorName = operatorName; |
|||
} |
|||
|
|||
public String getStatus() { |
|||
return status; |
|||
} |
|||
|
|||
public void setStatus(String status) { |
|||
this.status = status; |
|||
} |
|||
|
|||
public String getShowFlag() { |
|||
return showFlag; |
|||
} |
|||
|
|||
public void setShowFlag(String showFlag) { |
|||
this.showFlag = showFlag; |
|||
} |
|||
|
|||
public Date getLastScheduledTime() { |
|||
return lastScheduledTime; |
|||
} |
|||
|
|||
public void setLastScheduledTime(Date lastScheduledTime) { |
|||
this.lastScheduledTime = lastScheduledTime; |
|||
} |
|||
|
|||
public Float getEfficiency() { |
|||
return efficiency; |
|||
} |
|||
|
|||
public void setEfficiency(Float efficiency) { |
|||
this.efficiency = efficiency; |
|||
} |
|||
|
|||
public Float getQtyToSchedule() { |
|||
return qtyToSchedule; |
|||
} |
|||
|
|||
public void setQtyToSchedule(Float qtyToSchedule) { |
|||
this.qtyToSchedule = qtyToSchedule; |
|||
} |
|||
|
|||
public String getCalendarId() { |
|||
return calendarId; |
|||
} |
|||
|
|||
public void setCalendarId(String calendarId) { |
|||
this.calendarId = calendarId; |
|||
} |
|||
|
|||
public String getVirturlFlag() { |
|||
return virturlFlag; |
|||
} |
|||
|
|||
public void setVirturlFlag(String virturlFlag) { |
|||
this.virturlFlag = virturlFlag; |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue