package com.doumee.dao.business.dto;
|
|
import com.doumee.dao.business.model.TaxDetial;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
/**
|
* Created by IntelliJ IDEA.
|
*
|
* @Author : Rk
|
* @create 2024/1/24 11:35
|
*/
|
@Data
|
public class DirectInvoicingDTO {
|
|
@ApiModelProperty(value = "保单主键")
|
private Integer id;
|
|
@ApiModelProperty(value = "开票金额")
|
private BigDecimal invoicingMoney;
|
|
@ApiModelProperty(value = "接收方式 0电子发票 1纸质发票")
|
private Integer type;
|
|
@ApiModelProperty(value = "发票接收地址")
|
private String address;
|
|
@ApiModelProperty(value = "冲红单数据")
|
private List<Integer> invoicingDetailDTOList;
|
|
}
|