tj
7 天以前 b428226d0cf78bbb843fa17bffb1e338230fae6c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.mzl.flower.dto.response.payment;
 
import com.mzl.flower.base.AbstractTransDTO;
import com.mzl.flower.base.annotation.DictTrans;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
@Data
public class OrderSalesItemChargeDTO extends AbstractTransDTO {
    @ApiModelProperty(value = "赔付金额")
    private BigDecimal amount;
 
    @ApiModelProperty(value = "责任方 CHARGE_PERSON")
    @DictTrans(target = "personInChargeStr", codeType = "CHARGE_PERSON")
    private String personInCharge;
    private String personInChargeStr;
 
    @ApiModelProperty(value = "备注")
    private String remarks;
}