package edu.travel.country.web; import com.baomidou.mybatisplus.core.metadata.IPage; import edu.travel.country.entity.BaseCountryServe; import edu.travel.country.service.BaseCountryServeService; import edu.travel.dto.BaseCountryServeDto; import edu.travel.remote.BaseCountryServeRemoteController; import edu.travel.rpc.RPCBaseResponse; import edu.travel.vo.BaseCountryServeVo; import edu.travel.web.BaseController; import org.springframework.beans.BeanUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import java.util.List; /** * 服务国家表(base_country_serve)表控制层 * * @author xxxxx */ @RestController @RequestMapping("/baseCountryServe") public class BaseCountryServeController extends BaseController implements BaseCountryServeRemoteController { /** * 服务国家表(base_country_serve)表控制层 * */ @Autowired private BaseCountryServeService baseCountryServeService; /** * 分页 * @param dto * @return */ @GetMapping("/getCountryServePage") public RPCBaseResponse> getCountryServePage(BaseCountryServeDto dto) { return baseCountryServeService.getCountryServePage(dto); } /** * 服务国家树 */ @GetMapping("/getCountryServeTree") public RPCBaseResponse> getCountryServeTree(){ System.out.println("获取服务国家树"); return baseCountryServeService.getCountryServeTree(); } /** * 获取服务国家信息 * @param id * @return */ @Override @GetMapping("/getCountryServeFormId") public RPCBaseResponse getFormId(String id) { RPCBaseResponse baseCountryServeRPCBaseResponse = super.getId(id); RPCBaseResponse baseCountryServeVoPRCBaseResponse = new RPCBaseResponse<>(); BeanUtils.copyProperties(baseCountryServeRPCBaseResponse, baseCountryServeVoPRCBaseResponse); return baseCountryServeVoPRCBaseResponse; } /** * 更新服务国家信息 * @param entity * @return */ @Override @PostMapping("/updateCountryServeFormId") public RPCBaseResponse updateTargetFormId(@RequestBody BaseCountryServeDto entity) { BaseCountryServe baseCountryServe = new BaseCountryServe(); BeanUtils.copyProperties(entity, baseCountryServe); RPCBaseResponse baseCountryServeRPCBaseResponse = super.updateTargetById(baseCountryServe); RPCBaseResponse baseCountryServeVoRPCBaseResponse = new RPCBaseResponse<>(); BeanUtils.copyProperties(baseCountryServeRPCBaseResponse, baseCountryServeVoRPCBaseResponse); return baseCountryServeVoRPCBaseResponse; } /** * 新增服务国家信息 * @param entity * @return */ @Override @PostMapping("/saveCountryServeForm") public RPCBaseResponse saveFormTarget(@RequestBody BaseCountryServeDto entity) { BaseCountryServe baseCountryServe = new BaseCountryServe(); BeanUtils.copyProperties(entity, baseCountryServe); RPCBaseResponse baseCountryServeRPCBaseResponse = super.saveTarget(baseCountryServe); RPCBaseResponse baseCountryServeVoRPCBaseResponse = new RPCBaseResponse<>(); BeanUtils.copyProperties(baseCountryServeRPCBaseResponse, baseCountryServeVoRPCBaseResponse); return baseCountryServeVoRPCBaseResponse; } /** * 删除服务国家信息 * @param ids * @return */ @Override @PostMapping("/deleteCountryServeFormId") public RPCBaseResponse deleteTargetFormId(@RequestBody List ids) { RPCBaseResponse baseCountryServeRPCBaseResponse = super.deleteTargetById(ids); RPCBaseResponse baseCountryServeVoRPCBaseResponse = new RPCBaseResponse<>(); BeanUtils.copyProperties(baseCountryServeRPCBaseResponse, baseCountryServeVoRPCBaseResponse); return baseCountryServeVoRPCBaseResponse; } /** * 获取服务国家列表 * @return */ @Override @GetMapping("/listForm") public RPCBaseResponse> getAllForm() { RPCBaseResponse> listRPCBaseResponse = super.listAll(); RPCBaseResponse> baseCountryServeVoRPCBaseResponse = new RPCBaseResponse<>(); BeanUtils.copyProperties(listRPCBaseResponse, baseCountryServeVoRPCBaseResponse); return baseCountryServeVoRPCBaseResponse; } }