old mode 100644
new mode 100755
| | |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.owner.OwnerAppUserDto; |
| | | import com.java110.po.owner.OwnerAppUserPo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | @FeignClient(name = "user-service", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "${java110.user-service}", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/ownerAppUserApi") |
| | | public interface IOwnerAppUserInnerServiceSMO { |
| | | |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryOwnerAppUsersCount", method = RequestMethod.POST) |
| | | int queryOwnerAppUsersCount(@RequestBody OwnerAppUserDto ownerAppUserDto); |
| | | |
| | | @RequestMapping(value = "/updateOwnerAppUser", method = RequestMethod.POST) |
| | | int updateOwnerAppUser(@RequestBody OwnerAppUserPo ownerAppUserPo); |
| | | } |