| | |
| | | import cn.stylefeng.guns.modular.business.dto.CounsellingOrderReservationRequestDTO; |
| | | import cn.stylefeng.guns.modular.business.entity.CounsellingOrderReservation; |
| | | import cn.stylefeng.guns.modular.business.service.ICounsellingOrderReservationService; |
| | | import cn.stylefeng.guns.modular.business.service.ICounsellingOrderService; |
| | | import cn.stylefeng.roses.kernel.auth.api.context.LoginContext; |
| | | import cn.stylefeng.roses.kernel.db.api.factory.PageFactory; |
| | | import cn.stylefeng.roses.kernel.db.api.factory.PageResultFactory; |
| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | |
| | | return new SuccessResponseData<>(); |
| | | } |
| | | |
| | | |
| | | |
| | | @Autowired |
| | | private ICounsellingOrderService counsellingOrderService; |
| | | |
| | | /** |
| | | * 修改咨询订单预约记录状态 |
| | | */ |
| | |
| | | .set(CounsellingOrderReservation::getStauts,status) |
| | | .set(CounsellingOrderReservation::getRemark,remark); |
| | | this.counsellingOrderReservationService.update(lambdaUpdateWrapper); |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | return new SuccessResponseData<>(); |
| | | } |
| | | |