|
|
|
@ -0,0 +1,78 @@ |
|
|
|
package com.gaotao.modules.report.data; |
|
|
|
|
|
|
|
import com.alibaba.fastjson.annotation.JSONField; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import com.gaotao.modules.schedule.data.BaseData; |
|
|
|
import org.apache.ibatis.type.Alias; |
|
|
|
import org.springframework.format.annotation.DateTimeFormat; |
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
/** |
|
|
|
* @author LR |
|
|
|
* @Title: ShiftSearchData |
|
|
|
* 班次查询使用 |
|
|
|
* @Date 2021/10/20 15:39 |
|
|
|
*/ |
|
|
|
@Alias("SearchReportData") |
|
|
|
public class SearchReportData extends BaseData { |
|
|
|
private String reportId;//报表id |
|
|
|
private String reportName;//报表名称 |
|
|
|
private String reportType;//报表类型 |
|
|
|
private Date scheduleDate; |
|
|
|
@DateTimeFormat(pattern = "HH:mm") |
|
|
|
@JsonFormat(pattern = "HH:mm", timezone = "GMT+8") |
|
|
|
@JSONField(format = "HH:mm") |
|
|
|
private Date scheduleTime;//排产的时分秒 |
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|
|
|
private Date enterTime1; |
|
|
|
|
|
|
|
public String getReportId() { |
|
|
|
return reportId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setReportId(String reportId) { |
|
|
|
this.reportId = reportId; |
|
|
|
} |
|
|
|
|
|
|
|
public String getReportName() { |
|
|
|
return reportName; |
|
|
|
} |
|
|
|
|
|
|
|
public void setReportName(String reportName) { |
|
|
|
this.reportName = reportName; |
|
|
|
} |
|
|
|
|
|
|
|
public String getReportType() { |
|
|
|
return reportType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setReportType(String reportType) { |
|
|
|
this.reportType = reportType; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getScheduleDate() { |
|
|
|
return scheduleDate; |
|
|
|
} |
|
|
|
|
|
|
|
public void setScheduleDate(Date scheduleDate) { |
|
|
|
this.scheduleDate = scheduleDate; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getScheduleTime() { |
|
|
|
return scheduleTime; |
|
|
|
} |
|
|
|
|
|
|
|
public void setScheduleTime(Date scheduleTime) { |
|
|
|
this.scheduleTime = scheduleTime; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getEnterTime1() { |
|
|
|
return enterTime1; |
|
|
|
} |
|
|
|
|
|
|
|
public void setEnterTime1(Date enterTime1) { |
|
|
|
this.enterTime1 = enterTime1; |
|
|
|
} |
|
|
|
} |