diff --git a/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/entity/BmsInvoiceList.java b/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/entity/BmsInvoiceList.java index 9cfee12d5..62ffb5f59 100644 --- a/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/entity/BmsInvoiceList.java +++ b/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/entity/BmsInvoiceList.java @@ -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; } \ No newline at end of file diff --git a/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/todo/BmsInvoiceListAddDTO.java b/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/todo/BmsInvoiceListAddDTO.java index 59513e1e7..68e704583 100644 --- a/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/todo/BmsInvoiceListAddDTO.java +++ b/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/todo/BmsInvoiceListAddDTO.java @@ -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; } \ No newline at end of file diff --git a/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/todo/BmsInvoiceListDTO.java b/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/todo/BmsInvoiceListDTO.java index d40501262..ec9e0fe03 100644 --- a/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/todo/BmsInvoiceListDTO.java +++ b/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/todo/BmsInvoiceListDTO.java @@ -134,4 +134,12 @@ public class BmsInvoiceListDTO implements Serializable { @ApiModelProperty(value = "开票表集合") @Excel(name = "开票表集合", width = 15) private List bmsMakeOutInvoices; + /**实际开票客户*/ + @ApiModelProperty(value = "实际开票客户") + @Excel(name = "实际开票客户", width = 15) + private String actualInvoiceCustomer; + /**开票项目*/ + @ApiModelProperty(value = "开票项目") + @Excel(name = "开票项目", width = 15) + private String invoiceProjects; } \ No newline at end of file diff --git a/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/todo/BmsInvoiceListInvoiceStateDTO.java b/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/todo/BmsInvoiceListInvoiceStateDTO.java index a203f76a4..ed3c524f8 100644 --- a/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/todo/BmsInvoiceListInvoiceStateDTO.java +++ b/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/todo/BmsInvoiceListInvoiceStateDTO.java @@ -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; } \ No newline at end of file diff --git a/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/todo/BmsInvoiceListQueryDTO.java b/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/todo/BmsInvoiceListQueryDTO.java index 9d1b352bf..65514b057 100644 --- a/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/todo/BmsInvoiceListQueryDTO.java +++ b/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/todo/BmsInvoiceListQueryDTO.java @@ -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; } \ No newline at end of file diff --git a/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/vo/BmsInvoiceListDetailsVO.java b/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/vo/BmsInvoiceListDetailsVO.java index 6581b6b5d..dca426aa5 100644 --- a/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/vo/BmsInvoiceListDetailsVO.java +++ b/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/vo/BmsInvoiceListDetailsVO.java @@ -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; } \ No newline at end of file diff --git a/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/vo/BmsInvoiceListVO.java b/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/vo/BmsInvoiceListVO.java index c9df67942..392d71632 100644 --- a/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/vo/BmsInvoiceListVO.java +++ b/mhd_bms/src/main/java/com/mhd/bms/domain/bmsInvoiceList/repository/vo/BmsInvoiceListVO.java @@ -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;