添加和实现发送航班计划同步请求
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.gzzn.omms.msgexchangeapi.dto;
|
||||
|
||||
|
||||
public class SchdSyncDto {
|
||||
private String startDate;//格式,yyyy-MM-dd hh:mm
|
||||
private String endDate;//格式,yyyy-MM-dd hh:mm
|
||||
|
||||
public String getStartDate() {
|
||||
return startDate;
|
||||
}
|
||||
public void setStartDate(String startDate) {
|
||||
this.startDate = startDate;
|
||||
}
|
||||
public String getEndDate() {
|
||||
return endDate;
|
||||
}
|
||||
public void setEndDate(String endDate) {
|
||||
this.endDate = endDate;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user