This commit is contained in:
parent
435a0f55d1
commit
3c27920abd
|
|
@ -58,7 +58,9 @@ public class AllocAreaController extends BaseController {
|
||||||
//@RequiresPermissions("alloc:area:list")
|
//@RequiresPermissions("alloc:area:list")
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(AllocArea allocArea) {
|
public TableDataInfo list(AllocArea allocArea) {
|
||||||
startPage();
|
if (allocArea.isPagenation()) {
|
||||||
|
startPage();
|
||||||
|
}
|
||||||
List<AllocArea> list = allocAreaService.selectAllocAreaList(allocArea);
|
List<AllocArea> list = allocAreaService.selectAllocAreaList(allocArea);
|
||||||
return getDataTable(list);
|
return getDataTable(list);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,9 @@ public class AllocCanteenController extends BaseController {
|
||||||
//@RequiresPermissions("alloc:canteen:list")
|
//@RequiresPermissions("alloc:canteen:list")
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(AllocCanteen allocCanteen) {
|
public TableDataInfo list(AllocCanteen allocCanteen) {
|
||||||
startPage();
|
if (allocCanteen.isPagenation()) {
|
||||||
|
startPage();
|
||||||
|
}
|
||||||
List<AllocCanteen> list = allocCanteenService.selectAllocCanteenList(allocCanteen);
|
List<AllocCanteen> list = allocCanteenService.selectAllocCanteenList(allocCanteen);
|
||||||
return getDataTable(list);
|
return getDataTable(list);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,9 @@ public class AllocStallController extends BaseController {
|
||||||
//@RequiresPermissions("alloc:stall:list")
|
//@RequiresPermissions("alloc:stall:list")
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(AllocStall allocStall) {
|
public TableDataInfo list(AllocStall allocStall) {
|
||||||
startPage();
|
if (allocStall.isPagenation()) {
|
||||||
|
startPage();
|
||||||
|
}
|
||||||
List<AllocStall> list = allocStallService.selectAllocStallList(allocStall);
|
List<AllocStall> list = allocStallService.selectAllocStallList(allocStall);
|
||||||
return getDataTable(list);
|
return getDataTable(list);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,9 @@ import java.util.List;
|
||||||
public class AllocArea extends BaseEntity {
|
public class AllocArea extends BaseEntity {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/** 是否分页 */
|
||||||
|
private boolean pagenation;
|
||||||
|
|
||||||
/** 主键id */
|
/** 主键id */
|
||||||
private Long areaId;
|
private Long areaId;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,9 @@ import com.bonus.common.core.web.domain.BaseEntity;
|
||||||
public class AllocCanteen extends BaseEntity {
|
public class AllocCanteen extends BaseEntity {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/** 是否分页 */
|
||||||
|
private boolean pagenation;
|
||||||
|
|
||||||
/** 主键id */
|
/** 主键id */
|
||||||
private Long canteenId;
|
private Long canteenId;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,9 @@ import com.bonus.common.core.web.domain.BaseEntity;
|
||||||
public class AllocStall extends BaseEntity {
|
public class AllocStall extends BaseEntity {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/** 是否分页 */
|
||||||
|
private boolean pagenation;
|
||||||
|
|
||||||
/** 档口id */
|
/** 档口id */
|
||||||
private Long stallId;
|
private Long stallId;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue