package com.mzl.flower.dto.response.payment; import com.mzl.flower.base.annotation.DictTrans; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.math.BigDecimal; import java.util.List; @Data public class OrderItemSalesListDTO extends OrderItemListDTO { @ApiModelProperty(value = "订单明细ID") private String orderItemId; @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; private String chargePersons; @ApiModelProperty(value = "责任方列表") private List chargePersonList; }