日程排序
This commit is contained in:
@@ -10,7 +10,7 @@ import lombok.Data;
|
||||
* @date 2023-06-13 11:18
|
||||
*/
|
||||
@Data
|
||||
public class UserCalendarsEventDTO {
|
||||
public class UserCalendarsEventDTO implements Comparable<UserCalendarsEventDTO>{
|
||||
|
||||
@ApiModelProperty("日历id")
|
||||
private String calendarId;
|
||||
@@ -34,4 +34,9 @@ public class UserCalendarsEventDTO {
|
||||
this.startTime = startTime;
|
||||
this.endTime = endTime;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int compareTo(UserCalendarsEventDTO other) {
|
||||
return this.startTime.compareTo(other.getStartTime());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,6 +19,8 @@ public class InviteCodeDetailVO {
|
||||
private String partnerPhone;
|
||||
@ApiModelProperty("邀请码")
|
||||
private String inviteCode;
|
||||
@ApiModelProperty("门店编码")
|
||||
private String storeCode;
|
||||
@ApiModelProperty("门店名称")
|
||||
private String storeName;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user