部署
This commit is contained in:
parent
8343d54dba
commit
2717d71403
@ -24,6 +24,7 @@ type AccountingSearch struct {
|
||||
CreatedAtStart *time.Time // 创建开始时间
|
||||
CreatedAtEnd *time.Time // 创建结束时间
|
||||
CreatedStaffIds []int64 // 创建人
|
||||
AccountingIds []int64 // 做账id
|
||||
}
|
||||
|
||||
type ReplyAccountingList struct {
|
||||
|
@ -28,6 +28,7 @@ type ReplyLogisticsCompanyList struct {
|
||||
|
||||
type LogisticsCompanyItem struct {
|
||||
Id int64 `json:"id"`
|
||||
Serial string `json:"serial"`
|
||||
Name string `json:"name"` // 公司名称
|
||||
NameEn string `json:"nameEn"` // 公司名称英文
|
||||
ShortName string `json:"shortName"` // 公司简称
|
||||
@ -94,6 +95,7 @@ func (l *logisticsCompany) Add(ctx context.Context, args ArgsLogisticsCompanyAdd
|
||||
|
||||
type ReplyLogisticsCompanyInfo struct {
|
||||
Id int64 `json:"id"`
|
||||
Serial string `json:"serial"`
|
||||
Name string `json:"name"` // 公司名称
|
||||
NameEn string `json:"nameEn"` // 公司名称英文
|
||||
ShortName string `json:"shortName"` // 公司简称
|
||||
|
@ -22,6 +22,7 @@ type PurchaseSearch struct {
|
||||
CustomShortName string // 客户简称
|
||||
CreatedStaffIds []int64 // 创建人筛选
|
||||
FactoryName string // 采购工厂
|
||||
PurchaseIds []int64 // 采购id
|
||||
}
|
||||
type ReplyPurchaseList struct {
|
||||
List []PurchaseItem `json:"list"`
|
||||
|
@ -23,6 +23,7 @@ type SaleSearch struct {
|
||||
PurchaseStatus []int64 // 采购状态
|
||||
ShipmentStatus []int64 // 出舱状态
|
||||
CreatedStaffIds []int64 // 业务员
|
||||
SaleIds []int64 // 销售id
|
||||
BanFlag int64 // 禁用标记 1=禁用,2=可用
|
||||
}
|
||||
type ReplySaleList struct {
|
||||
|
@ -23,6 +23,7 @@ type ShipmentSearch struct {
|
||||
StaffIds []int64 // 业务员筛选
|
||||
WorkflowStatus []int64 // 审核状态
|
||||
IsAudit int64 // 审核状态 是否审核 1=是 2=否
|
||||
ShipmentIds []int64 // 出舱id
|
||||
}
|
||||
type ReplyShipmentList struct {
|
||||
List []ShipmentItem `json:"list"`
|
||||
|
@ -21,6 +21,7 @@ type CustomsSearch struct {
|
||||
CustomIds []int64 // 客户筛选
|
||||
StaffIds []int64 // 业务员筛选
|
||||
IsCancel int64 // 是否有效
|
||||
CustomsIds []int64 // 报关id
|
||||
}
|
||||
type ReplyCustomsList struct {
|
||||
List []CustomsItem `json:"list"`
|
||||
|
@ -20,6 +20,7 @@ type ExchangeSettlementSearch struct {
|
||||
CustomIds []int64 // 客户筛选
|
||||
StaffIds []int64 // 业务员筛选
|
||||
IsCancel int64 // 是否有效
|
||||
ExchangeSettlementIds []int64 // 结汇id
|
||||
}
|
||||
type ReplyExchangeSettlementList struct {
|
||||
List []ExchangeSettlementItem `json:"list"`
|
||||
|
@ -21,6 +21,7 @@ type SerialSearch struct {
|
||||
CustomIds []int64 // 客户筛选
|
||||
StaffIds []int64 // 业务员筛选
|
||||
IsCancel int64 // 是否有效
|
||||
SerialIds []int64 // 商检id
|
||||
}
|
||||
type ReplySerialList struct {
|
||||
List []SerialItem `json:"list"`
|
||||
|
@ -37,6 +37,7 @@ type WorkflowItem struct {
|
||||
CreatedStaffId int64 `json:"createdStaffId"` // 创建人
|
||||
CreatedAt *time.Time `json:"createdAt"` // 创建时间
|
||||
UpdatedAt *time.Time `json:"updatedAt"` // 更新时间
|
||||
Data string `json:"data"`
|
||||
}
|
||||
|
||||
// List @TITLE 审核列表
|
||||
|
Loading…
Reference in New Issue
Block a user