package com.jilongda.manage.controller; import com.jilongda.common.basic.ApiResult; import com.jilongda.common.basic.PageInfo; import com.jilongda.common.constants.WarehousingConstant; import com.jilongda.common.utils.CodeGenerateUtils; import com.jilongda.manage.model.TOptometrist; import com.jilongda.manage.model.TOrderAftersales; import com.jilongda.manage.query.TOptometristQuery; import com.jilongda.manage.query.TOrderAftersalesQuery; import com.jilongda.manage.service.TOrderAftersalesService; import com.jilongda.manage.vo.TOptometristVO; import com.jilongda.manage.vo.TOrderAftersalesVO; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** *
* 订单售后表 前端控制器 *
* * @author 无关风月 * @since 2024-12-09 */ @Api(tags = "订单售后管理") @RestController @RequestMapping("/t-order-aftersales") public class TOrderAftersalesController { @Autowired private TOrderAftersalesService orderAftersalesService; @ApiOperation(value = "订单售后列表") @PostMapping(value = "/pageList") public ApiResult