feat:添加专题活动,动态查询条件

new-v20240713
wangxy 1 week ago
parent b49c8a667a
commit 94126981b3

@ -43,9 +43,9 @@ public class ColumnTreeController extends BaseController {
@ApiOperation("类别树")
@GetMapping("/getTree")
public R<List<SysColumnVO>> getTree(@RequestParam(required = false, defaultValue = "0") String parentId) {
public R<List<SysColumnVO>> getTree(@RequestParam(required = false, defaultValue = "2") String columnType) {
LambdaQueryWrapper<SysColumn> tagWrapper = new LambdaQueryWrapper<>();
tagWrapper.eq(SysColumn::getColumnType, SPECIAL_COLUMN_TYPE)
tagWrapper.eq(SysColumn::getColumnType, columnType)
.eq(SysColumn::getColumnGrade, COLUMN_GRADE)
.eq(SysColumn::getStatus,STATUS)
.orderByAsc(SysColumn::getOrderNum);

Loading…
Cancel
Save