...
|
...
|
@@ -54,7 +54,7 @@ func (listIntervalService *ListIntervalService) CreateListInterval(createListInt |
|
|
|
|
|
// 判断年榜时间是否和上个年榜重叠
|
|
|
if len(listIntervals) > 0 {
|
|
|
if createListIntervalCommand.ListIntervalStartTime.Before(listIntervals[0].IntervalEndTime) {
|
|
|
if createListIntervalCommand.ListIntervalStartTime.Before(listIntervals[0].IntervalEndTime) || createListIntervalCommand.ListIntervalStartTime.Equal(listIntervals[0].IntervalEndTime){
|
|
|
return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "年榜开始时间必须大于上一个年榜结束时间")
|
|
|
} else {
|
|
|
// 创建排行榜时间命令
|
...
|
...
|
|