
6 changed files with 71 additions and 14 deletions
@ -0,0 +1,23 @@ |
|||||
|
package com.yxt.anrui.reportcenter.api.carsSoldProfit; |
||||
|
|
||||
|
import com.yxt.common.core.vo.Vo; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: dimengzhe |
||||
|
* @date: 2025/5/15 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class CarsSoldProfitRebateAllVo implements Vo { |
||||
|
private static final long serialVersionUID = -9016391824372444422L; |
||||
|
|
||||
|
private List<CarsSoldProfitRebateDetailsVo> list; |
||||
|
@ApiModelProperty("预提返利合计") |
||||
|
private String expectedRebateTotal; |
||||
|
@ApiModelProperty("调整返利合计") |
||||
|
private String adjustedRebateTotal; |
||||
|
} |
@ -0,0 +1,28 @@ |
|||||
|
package com.yxt.anrui.reportcenter.api.carsSoldProfit; |
||||
|
|
||||
|
import com.yxt.common.core.vo.Vo; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: dimengzhe |
||||
|
* @date: 2025/5/15 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class CarsSoldProfitRebateDetailsVo implements Vo { |
||||
|
private static final long serialVersionUID = -2059450221052046209L; |
||||
|
|
||||
|
@ApiModelProperty("政策方") |
||||
|
private String policy; |
||||
|
@ApiModelProperty("所属年月") |
||||
|
private String yearAndMonth; |
||||
|
@ApiModelProperty("返利类型") |
||||
|
private String rebateType; |
||||
|
@ApiModelProperty("返利名称") |
||||
|
private String rebateName; |
||||
|
@ApiModelProperty("预提返利") |
||||
|
private String expectedRebate; |
||||
|
@ApiModelProperty("返利调整") |
||||
|
private String rebatesAdjust; |
||||
|
} |
Loading…
Reference in new issue