@@ -22,7 +22,5 @@ public class TmsBmDTO implements Serializable {
@ApiModelProperty(value = "城市编号",required = true)
private String city;
- @ApiModelProperty(value = "月份 '-1'为一个月前,0为当月")
- private Integer month;
}
@@ -94,9 +94,9 @@ public class TmsStudentInfoServiceImpl extends ServiceImpl<TmsStudentInfoMapper,
//今日预报名
if (yDay!=null) {
- bmVo.setYDay(day.getStuCount());
+ bmVo.setYday(day.getStuCount());
} else {
- bmVo.setYDay(0);
+ bmVo.setYday(0);
//今日报名
@@ -17,7 +17,7 @@ public class TmsBmVo implements Serializable {
@ApiModelProperty(value = "今天预报名人数")
- private Integer yDay;
+ private Integer yday;
@ApiModelProperty(value = "今天报名人数")
private Integer day;