5 changed files with 73 additions and 7 deletions
Split View
Diff Options
-
9dating-agency-mall-server/src/main/java/com/qniao/dam/api/query/eso/user/EntrustServiceOrderUserQueryController.java
-
15dating-agency-mall-server/src/main/java/com/qniao/dam/api/query/eso/user/request/GetEntrustServiceOrderAbstractByMatchmakerQueryParams.java
-
18dating-agency-mall-server/src/main/java/com/qniao/dam/api/query/eso/user/response/EntrustServiceOrderAbstractVo.java
-
20dating-agency-mall-server/src/main/java/com/qniao/dam/query/eso/EntrustServiceOrderQueryService.java
-
18dating-agency-mall-server/src/main/java/com/qniao/dam/query/eso/impl/EntrustServiceOrderQueryServiceImpl.java
@ -0,0 +1,15 @@ |
|||
package com.qniao.dam.api.query.eso.user.request; |
|||
|
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotNull; |
|||
|
|||
@Data |
|||
public class GetEntrustServiceOrderAbstractByMatchmakerQueryParams { |
|||
|
|||
@ApiModelProperty("红娘标识") |
|||
@NotNull(message = "红娘标识不能为空") |
|||
private Long queryMatchmakerId; |
|||
|
|||
} |
|||
@ -0,0 +1,18 @@ |
|||
package com.qniao.dam.api.query.eso.user.response; |
|||
|
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class EntrustServiceOrderAbstractVo { |
|||
|
|||
@ApiModelProperty("待接单数量") |
|||
private Integer pendingAcceptNum = 0; |
|||
|
|||
@ApiModelProperty("已接单数量") |
|||
private Integer acceptedNum = 0; |
|||
|
|||
@ApiModelProperty("已完成数量") |
|||
private Integer finishedNum = 0; |
|||
|
|||
} |
|||
Write
Preview
Loading…
Cancel
Save