作者 陈志颖

test:年榜测试

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