| | |
| | | import com.panzhihua.common.utlis.RSAUtils; |
| | | import com.panzhihua.service_property.entity.ComPropertyRepair; |
| | | import com.panzhihua.service_property.service.ComPropertyRepairService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | |
| | | */ |
| | | @RestController |
| | | @RequestMapping("comPropertyRepair") |
| | | @Slf4j |
| | | public class ComPropertyRepairApi { |
| | | /** |
| | | * 服务对象 |
| | |
| | | */ |
| | | @PostMapping("queryAll") |
| | | public R selectAll(@RequestBody CommonPage commonPage) { |
| | | log.info("===================参数+"+commonPage); |
| | | if (nonNull(commonPage.getPropertyCheck()) && commonPage.getPropertyCheck()==1 && nonNull(commonPage.getPropertyId())){ |
| | | return this.comPropertyRepairService.pageListProperty(commonPage); |
| | | } |