发票添加 实际开票客户 开票项目;

This commit is contained in:
王奎兴
2026-02-27 16:56:55 +08:00
parent 74c37ad0d4
commit c4e5ed9e65
7 changed files with 56 additions and 1 deletions
@@ -203,4 +203,12 @@ public class BmsInvoiceList extends BaseVOEntity {
@ApiModelProperty(value = "一级组织ID")
@Excel(name = "一级组织ID", width = 15)
private Long topOrganizationId;
/**实际开票客户*/
@ApiModelProperty(value = "实际开票客户")
@Excel(name = "实际开票客户", width = 15)
private String actualInvoiceCustomer;
/**开票项目*/
@ApiModelProperty(value = "开票项目")
@Excel(name = "开票项目", width = 15)
private String invoiceProjects;
}
@@ -63,4 +63,12 @@ public class BmsInvoiceListAddDTO implements Serializable {
@ApiModelProperty(value = "对账单id")
@Excel(name = "对账单id", width = 15)
private Long billManageId;
/**实际开票客户*/
@ApiModelProperty(value = "实际开票客户")
@Excel(name = "实际开票客户", width = 15)
private String actualInvoiceCustomer;
/**开票项目*/
@ApiModelProperty(value = "开票项目")
@Excel(name = "开票项目", width = 15)
private String invoiceProjects;
}
@@ -134,4 +134,12 @@ public class BmsInvoiceListDTO implements Serializable {
@ApiModelProperty(value = "开票表集合")
@Excel(name = "开票表集合", width = 15)
private List<BmsMakeOutInvoice> bmsMakeOutInvoices;
/**实际开票客户*/
@ApiModelProperty(value = "实际开票客户")
@Excel(name = "实际开票客户", width = 15)
private String actualInvoiceCustomer;
/**开票项目*/
@ApiModelProperty(value = "开票项目")
@Excel(name = "开票项目", width = 15)
private String invoiceProjects;
}
@@ -82,4 +82,12 @@ public class BmsInvoiceListInvoiceStateDTO implements Serializable {
@ApiModelProperty(value = "操作类型(取消申请-0,驳回-1")
@Excel(name = "操作类型(取消申请-0,驳回-1", width = 15)
private Integer operateType;
/**实际开票客户*/
@ApiModelProperty(value = "实际开票客户")
@Excel(name = "实际开票客户", width = 15)
private String actualInvoiceCustomer;
/**开票项目*/
@ApiModelProperty(value = "开票项目")
@Excel(name = "开票项目", width = 15)
private String invoiceProjects;
}
@@ -137,4 +137,12 @@ public class BmsInvoiceListQueryDTO implements Serializable {
/**一级组织ID*/
@ApiModelProperty(value = "一级组织ID")
private Long topOrganizationId;
/**实际开票客户*/
@ApiModelProperty(value = "实际开票客户")
@Excel(name = "实际开票客户", width = 15)
private String actualInvoiceCustomer;
/**开票项目*/
@ApiModelProperty(value = "开票项目")
@Excel(name = "开票项目", width = 15)
private String invoiceProjects;
}
@@ -176,6 +176,13 @@ public class BmsInvoiceListDetailsVO implements Serializable {
@ApiModelProperty(value = "开票时间")
private Date invoiceMakeTime;
/**实际开票客户*/
@ApiModelProperty(value = "实际开票客户")
@Excel(name = "实际开票客户", width = 15)
private String actualInvoiceCustomer;
/**开票项目*/
@ApiModelProperty(value = "开票项目")
@Excel(name = "开票项目", width = 15)
private String invoiceProjects;
}
@@ -184,6 +184,14 @@ public class BmsInvoiceListVO implements Serializable {
/**一级组织ID*/
@ApiModelProperty(value = "一级组织ID")
private Long topOrganizationId;
/**实际开票客户*/
@ApiModelProperty(value = "实际开票客户")
@Excel(name = "实际开票客户", width = 15)
private String actualInvoiceCustomer;
/**开票项目*/
@ApiModelProperty(value = "开票项目")
@Excel(name = "开票项目", width = 15)
private String invoiceProjects;
public void setTransportationIds(String transportationIds) {
this.transportationIds = transportationIds;