调整业务问题
This commit is contained in:
+2
@@ -74,9 +74,11 @@ public class InvoiceApplicationSaveRequest implements Serializable {
|
||||
private String unit;
|
||||
private BigDecimal quantity;
|
||||
private BigDecimal unitPriceNoTax;
|
||||
private BigDecimal amountNoTax;
|
||||
private BigDecimal amountWithTax;
|
||||
private BigDecimal taxRate;
|
||||
private BigDecimal taxAmount;
|
||||
private BigDecimal totalAmount;
|
||||
private String remark;
|
||||
}
|
||||
}
|
||||
|
||||
+2
@@ -51,8 +51,10 @@ public class InvoiceApplicationLine extends TenantEntity {
|
||||
private String unit;
|
||||
private BigDecimal quantity;
|
||||
private BigDecimal unitPriceNoTax;
|
||||
private BigDecimal amountNoTax;
|
||||
private BigDecimal amountWithTax;
|
||||
private BigDecimal taxRate;
|
||||
private BigDecimal taxAmount;
|
||||
private BigDecimal totalAmount;
|
||||
private String remark;
|
||||
}
|
||||
|
||||
+5
@@ -9,6 +9,7 @@
|
||||
*/
|
||||
package org.springblade.transport.pojo.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
@@ -65,6 +66,10 @@ public class PreSettlementDetailFee extends TenantEntity {
|
||||
@Schema(description = "费用项JSON")
|
||||
private String feeItemsJson;
|
||||
|
||||
@Schema(description = "命中计费规则JSON")
|
||||
@TableField(exist = false)
|
||||
private String billingRulesJson;
|
||||
|
||||
@Schema(description = "原金额")
|
||||
private BigDecimal originalAmount;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user