|
|
@ -15,6 +15,7 @@ import com.epmet.feign.EpmetMessageOpenFeignClient; |
|
|
|
import com.epmet.send.SendMqMsgUtil; |
|
|
|
import com.epmet.service.CustomerGridService; |
|
|
|
import com.epmet.service.CustomerStaffAgencyService; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
@ -26,6 +27,7 @@ import java.util.List; |
|
|
|
*/ |
|
|
|
@RestController |
|
|
|
@RequestMapping("grid") |
|
|
|
@Slf4j |
|
|
|
public class GridController { |
|
|
|
|
|
|
|
@Autowired |
|
|
@ -77,6 +79,7 @@ public class GridController { |
|
|
|
public Result editGrid(@LoginUser TokenDto tokenDto, @RequestBody EditGridFormDTO editGridFormDTO){ |
|
|
|
ValidatorUtils.validateEntity(editGridFormDTO, EditGridFormDTO.EditGrid.class); |
|
|
|
editGridFormDTO.setCustomerId(tokenDto.getCustomerId()); |
|
|
|
log.error("s",editGridFormDTO.getSort()); |
|
|
|
Result result = customerGridService.editGrid(tokenDto,editGridFormDTO); |
|
|
|
|
|
|
|
//2021-10-18 推送mq,数据同步到中介库 start
|
|
|
|