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;
|
}
|