This commit is contained in:
parent
267cd50858
commit
54e30e6925
|
|
@ -67,7 +67,7 @@ public class DatascreenController {
|
|||
// }
|
||||
|
||||
DsAuthorityCanteenVO dsAuthorityCanteenVO = new DsAuthorityCanteenVO();
|
||||
dsAuthorityCanteenVO.setCanteenId(378928314946949120L);
|
||||
dsAuthorityCanteenVO.setCanteenId(dto.getCanteenId());
|
||||
canteenList.add(dsAuthorityCanteenVO);
|
||||
return AjaxResult.success(this.datascreenService.getCurrentMealtimeNum(canteenList));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,28 +2,17 @@ package com.bonus.canteen.core.report.datascreen.dto;
|
|||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@ApiModel
|
||||
@Data
|
||||
public class DatascreenDTO {
|
||||
@ApiModelProperty("权限id")
|
||||
private String authorityId;
|
||||
@ApiModelProperty("数据模块对应key")
|
||||
private String key;
|
||||
|
||||
public String getAuthorityId() {
|
||||
return this.authorityId;
|
||||
}
|
||||
|
||||
public String getKey() {
|
||||
return this.key;
|
||||
}
|
||||
|
||||
public void setAuthorityId(final String authorityId) {
|
||||
this.authorityId = authorityId;
|
||||
}
|
||||
|
||||
public void setKey(final String key) {
|
||||
this.key = key;
|
||||
}
|
||||
@ApiModelProperty("食堂id")
|
||||
private Long canteenId;
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue