|
@@ -1,5 +1,8 @@
|
|
|
package com.yonge.cooleshow.biz.dal.dto.search;
|
|
|
|
|
|
+import com.yonge.cooleshow.biz.dal.enums.AccountBizTypeEnum;
|
|
|
+import com.yonge.cooleshow.biz.dal.enums.InOrOutEnum;
|
|
|
+import com.yonge.cooleshow.common.enums.PostStatusEnum;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.util.Date;
|
|
@@ -16,13 +19,13 @@ public class PlatformCashAccountRecordSearch extends QueryInfo {
|
|
|
|
|
|
@ApiModelProperty("收支类型(IN-收入 OUT-支出)")
|
|
|
private String inOrOut;
|
|
|
-
|
|
|
- @ApiModelProperty("业务类型:PRACTICE、陪练课 LIVE、直播课 VIDEO、视频课 MUSIC、乐谱")
|
|
|
- private String bizType;
|
|
|
-
|
|
|
- @ApiModelProperty("入账状态 WAIT 待入账 RECORDED 已入账 CANCEL 退费")
|
|
|
- private String status;
|
|
|
-
|
|
|
+
|
|
|
+ @ApiModelProperty("业务类型:PRACTICE、陪练课 LIVE、直播课 VIDEO、视频课 MUSIC、乐谱 WITHDRAWAL、提现 LIVE_SHARE、直播课分润 VIDEO_SHARE、视频课分润 MUSIC_SHARE、乐谱分润 VIP_SHARE、会员分润 MALL_SHARE、商品分润 ")
|
|
|
+ private AccountBizTypeEnum bizType;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "入账状态 WAIT 待入账 FROZEN 冻结入账 RECORDED 已入账 CANCEL 退费 ")
|
|
|
+ private PostStatusEnum postStatus;
|
|
|
+
|
|
|
@ApiModelProperty("记录开始时间")
|
|
|
private Date startDate;
|
|
|
|
|
@@ -53,20 +56,20 @@ public class PlatformCashAccountRecordSearch extends QueryInfo {
|
|
|
this.inOrOut = inOrOut;
|
|
|
}
|
|
|
|
|
|
- public String getBizType() {
|
|
|
+ public AccountBizTypeEnum getBizType() {
|
|
|
return bizType;
|
|
|
}
|
|
|
|
|
|
- public void setBizType(String bizType) {
|
|
|
+ public void setBizType(AccountBizTypeEnum bizType) {
|
|
|
this.bizType = bizType;
|
|
|
}
|
|
|
|
|
|
- public String getStatus() {
|
|
|
- return status;
|
|
|
+ public PostStatusEnum getPostStatus() {
|
|
|
+ return postStatus;
|
|
|
}
|
|
|
|
|
|
- public void setStatus(String status) {
|
|
|
- this.status = status;
|
|
|
+ public void setPostStatus(PostStatusEnum postStatus) {
|
|
|
+ this.postStatus = postStatus;
|
|
|
}
|
|
|
|
|
|
public Date getStartDate() {
|