feat:收益列表-增加收益人查询

This commit is contained in:
yangqingyuan
2024-08-09 16:14:18 +08:00
parent 9581638e56
commit 9588ea30b7

View File

@@ -1,5 +1,6 @@
package com.gxwebsoft.shop.param; package com.gxwebsoft.shop.param;
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import com.gxwebsoft.common.core.annotation.QueryField; import com.gxwebsoft.common.core.annotation.QueryField;
import com.gxwebsoft.common.core.annotation.QueryType; import com.gxwebsoft.common.core.annotation.QueryType;
@@ -51,6 +52,11 @@ public class ProfitLogParam extends BaseParam {
@QueryField(type = QueryType.EQ) @QueryField(type = QueryType.EQ)
private String merchantName; private String merchantName;
@ApiModelProperty(value = "收益人姓名")
@QueryField(value = "comments",type = QueryType.LIKE)//收益人目前存储在备注里面
@TableField(exist = false)
private String beneficiaryName;
@ApiModelProperty(value = "收益类型1资产收益2服务费收益3推广收益4门店业绩提成5站点业绩提成") @ApiModelProperty(value = "收益类型1资产收益2服务费收益3推广收益4门店业绩提成5站点业绩提成")
@QueryField(type = QueryType.EQ) @QueryField(type = QueryType.EQ)
private Integer scene; private Integer scene;