| | |
| | | private IDaTileMatchRulesService daTileMatchRulesService; |
| | | |
| | | /** |
| | | * 查询配瓦规则列表 |
| | | * 查询配瓦规则列表() |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('da:tileMatchRules:list')") |
| | | @GetMapping("/list") |
| | |
| | | } |
| | | |
| | | /** |
| | | * 曲轴配瓦 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('da:tileMatchRules:list')") |
| | | @GetMapping("/list2") |
| | | public TableDataInfo list2(DaTileMatchRules daTileMatchRules) |
| | | { |
| | | startPage(); |
| | | List<DaTileMatchRules> list = daTileMatchRulesService.selectDaTileMatchRulesList(daTileMatchRules); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 连杆配瓦 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('da:tileMatchRules:list')") |
| | | @GetMapping("/list4") |
| | | public TableDataInfo list4(DaTileMatchRules daTileMatchRules) |
| | | { |
| | | startPage(); |
| | | List<DaTileMatchRules> list = daTileMatchRulesService.selectDaTileMatchRulesList(daTileMatchRules); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 平衡轴配瓦 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('da:tileMatchRules:list')") |
| | | @GetMapping("/list3") |
| | | public TableDataInfo list3(DaTileMatchRules daTileMatchRules) |
| | | { |
| | | startPage(); |
| | | List<DaTileMatchRules> list = daTileMatchRulesService.selectDaTileMatchRulesList(daTileMatchRules); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导出配瓦规则列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('da:tileMatchRules:export')") |