This commit is contained in:
邹宗楠
2025-09-16 14:22:34 +08:00
parent 5480380c90
commit c55847dda0
29 changed files with 401 additions and 21 deletions

View File

@@ -72,6 +72,14 @@ const (
AlarmFee = 1500 // 配送费报警阈值
)
const (
InvoiceStatusInit = "1" // INIT-初始化,未受理
InvoiceStatusFailUre = "2" // APPLY_FAILURE-申请受理失败
InvoiceStatusBilling = "3" // 开具中
InvoiceStatusBillingSuccess = "4" // 开具成功
InvoiceStatusBillingFail = "5" // 开具失败
)
type VendorInfo struct {
Name string `json:"name"`