Blame view

java110-interface/src/main/java/com/java110/intf/user/IOwnerInnerServiceSMO.java 4.24 KB
88e030b7   王彪总   init project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  package com.java110.intf.user;
  
  import com.java110.config.feign.FeignConfiguration;
  import com.java110.dto.owner.OwnerDto;
  import com.java110.po.owner.OwnerPo;
  import org.springframework.cloud.openfeign.FeignClient;
  import org.springframework.web.bind.annotation.RequestBody;
  import org.springframework.web.bind.annotation.RequestMapping;
  import org.springframework.web.bind.annotation.RequestMethod;
  
  import java.util.List;
  
  /**
   * @ClassName IOwnerInnerServiceSMO
   * @Description 业主接口类
   * @Author wuxw
   * @Date 2019/4/24 9:04
   * @Version 1.0
   * add by wuxw 2019/4/24
   **/
  @FeignClient(name = "user-service", configuration = {FeignConfiguration.class})
  @RequestMapping("/ownerApi")
  public interface IOwnerInnerServiceSMO {
  
      /**
9750b443   王彪总   fix(config): 更新配置...
26
       * <p>查询项目楼信息</p>
88e030b7   王彪总   init project
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
       *
       * @param ownerDto 数据对象分享
       * @return OwnerDto 对象数据
       */
      @RequestMapping(value = "/queryOwners", method = RequestMethod.POST)
      List<OwnerDto> queryOwners(@RequestBody OwnerDto ownerDto);
  
  
      /**
       * <p>查询业主成员</p>
       *
       * @param ownerDto 数据对象分享
       * @return OwnerDto 对象数据
       */
      @RequestMapping(value = "/queryOwnerMembers", method = RequestMethod.POST)
      List<OwnerDto> queryOwnerMembers(@RequestBody OwnerDto ownerDto);
  
      @RequestMapping(value = "/queryOwnersMemberCount", method = RequestMethod.POST)
      int queryOwnersMemberCount(@RequestBody OwnerDto ownerDto);
  
      /**
9750b443   王彪总   fix(config): 更新配置...
48
       * 查询<p>项目楼</p>总记录数
88e030b7   王彪总   init project
49
50
       *
       * @param ownerDto 数据对象分享
9750b443   王彪总   fix(config): 更新配置...
51
       * @return 项目下的项目楼记录数
88e030b7   王彪总   init project
52
53
54
55
56
       */
      @RequestMapping(value = "/queryOwnersCount", method = RequestMethod.POST)
      int queryOwnersCount(@RequestBody OwnerDto ownerDto);
  
      /**
9750b443   王彪总   fix(config): 更新配置...
57
       * 查询<p>项目楼</p>总记录数 根据条件查询
88e030b7   王彪总   init project
58
59
       *
       * @param ownerDto 数据对象分享
9750b443   王彪总   fix(config): 更新配置...
60
       * @return 项目下的项目楼记录数
88e030b7   王彪总   init project
61
62
63
64
65
66
       */
      @RequestMapping(value = "/queryOwnerCountByCondition", method = RequestMethod.POST)
      int queryOwnerCountByCondition(@RequestBody OwnerDto ownerDto);
  
  
      /**
9750b443   王彪总   fix(config): 更新配置...
67
       * <p>查询项目楼信息</p> 根据条件查询
88e030b7   王彪总   init project
68
69
70
71
72
73
74
75
76
       *
       * @param ownerDto 数据对象分享 根据条件查询
       * @return OwnerDto 对象数据
       */
      @RequestMapping(value = "/queryOwnersByCondition", method = RequestMethod.POST)
      List<OwnerDto> queryOwnersByCondition(@RequestBody OwnerDto ownerDto);
  
  
      /**
9750b443   王彪总   fix(config): 更新配置...
77
       * 查询<p>项目楼</p>总记录数
88e030b7   王彪总   init project
78
79
       *
       * @param ownerDto 数据对象分享
9750b443   王彪总   fix(config): 更新配置...
80
       * @return 项目下的项目楼记录数
88e030b7   王彪总   init project
81
82
83
84
85
86
87
88
       */
      @RequestMapping(value = "/queryNoEnterRoomOwnerCount", method = RequestMethod.POST)
      int queryNoEnterRoomOwnerCount(@RequestBody OwnerDto ownerDto);
  
      /**
       * 根据房屋查询业主信息
       *
       * @param ownerDto 数据对象分享
9750b443   王彪总   fix(config): 更新配置...
89
       * @return 项目下的项目楼记录数
88e030b7   王彪总   init project
90
91
92
93
94
95
96
97
98
       */
      @RequestMapping(value = "/queryOwnersByRoom", method = RequestMethod.POST)
      List<OwnerDto> queryOwnersByRoom(@RequestBody OwnerDto ownerDto);
  
  
      /**
       * 根据停车位查询业主信息
       *
       * @param ownerDto 数据对象分享
9750b443   王彪总   fix(config): 更新配置...
99
       * @return 项目下的项目楼记录数
88e030b7   王彪总   init project
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
       */
      @RequestMapping(value = "/queryOwnersByParkingSpace", method = RequestMethod.POST)
      List<OwnerDto> queryOwnersByParkingSpace(@RequestBody OwnerDto ownerDto);
  
      /**
       * 修改业主信息
       *
       * @param ownerPo
       * @return
       */
      @RequestMapping(value = "/updateOwnerMember", method = RequestMethod.POST)
      int updateOwnerMember(@RequestBody OwnerPo ownerPo);
  
      /**
       * 查询 商铺租房记录 数量
       *
       * @param ownerDto
       * @return
       */
      @RequestMapping(value = "/queryOwnerLogsCountByRoom", method = RequestMethod.POST)
      int queryOwnerLogsCountByRoom(@RequestBody OwnerDto ownerDto);
  
      /**
       * 查询 商铺租房记录
       *
       * @param ownerDto
       * @return
       */
      @RequestMapping(value = "/queryOwnerLogsByRoom", method = RequestMethod.POST)
      List<OwnerDto> queryOwnerLogsByRoom(@RequestBody OwnerDto ownerDto);
  
      /**
9750b443   王彪总   fix(config): 更新配置...
132
       * <p>查询项目楼信息</p>
88e030b7   王彪总   init project
133
134
135
136
137
138
139
140
141
       *
       * @param ownerDto 数据对象分享
       * @return OwnerDto 对象数据
       */
      @RequestMapping(value = "/queryAllOwners", method = RequestMethod.POST)
      List<OwnerDto> queryAllOwners(@RequestBody OwnerDto ownerDto);
  
  
  }