| | |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * 宣教分类Controller |
| | | * 宣教分类(表没了,作废)Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @Api("宣教分类(宣教类别)") |
| | | @Api("宣教分类(作废)") |
| | | @RestController |
| | | @RequestMapping("/smartor/hecategory") |
| | | public class HeCategoryController extends BaseController { |
| | |
| | | @PreAuthorize("@ss.hasPermi('smartor:hecategory:list')") |
| | | @PostMapping("/selectHeCategoryList") |
| | | public TableDataInfo selectHeCategorylist(@RequestBody HeCategory heCategory) { |
| | | startPage(); |
| | | // startPage(); |
| | | List<HeCategoryVO> list = heCategoryService.selectHeCategoryList(heCategory); |
| | | return getDataTable(list); |
| | | } |