| | |
| | | import com.ruoyi.system.model.TBill; |
| | | import com.ruoyi.system.query.TBillQuery; |
| | | import com.ruoyi.system.service.TBillService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | |
| | | * @author xiaochen |
| | | * @since 2025-01-17 |
| | | */ |
| | | @Api(tags = "账单管理") |
| | | @RestController |
| | | @RequestMapping("/t-bill") |
| | | public class TBillController { |
| | |
| | | @Autowired |
| | | TBillService tBillService; |
| | | |
| | | |
| | | |
| | | |
| | | @PreAuthorize("@ss.hasPermi('system:bill:list')") |
| | | @PostMapping("list") |
| | | @ApiOperation("分页查询账单列表") |