添加和实现发送航班计划同步请求

This commit is contained in:
zhouxiunai
2018-12-19 14:29:43 +08:00
parent 653c1c554a
commit fae61468e5
2 changed files with 66 additions and 0 deletions
@@ -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;
}
}