This commit is contained in:
守护自己的云 2024-10-12 14:46:31 +08:00
parent 8343d54dba
commit 2717d71403
9 changed files with 15 additions and 5 deletions

View File

@ -24,6 +24,7 @@ type AccountingSearch struct {
CreatedAtStart *time.Time // 创建开始时间 CreatedAtStart *time.Time // 创建开始时间
CreatedAtEnd *time.Time // 创建结束时间 CreatedAtEnd *time.Time // 创建结束时间
CreatedStaffIds []int64 // 创建人 CreatedStaffIds []int64 // 创建人
AccountingIds []int64 // 做账id
} }
type ReplyAccountingList struct { type ReplyAccountingList struct {

View File

@ -28,6 +28,7 @@ type ReplyLogisticsCompanyList struct {
type LogisticsCompanyItem struct { type LogisticsCompanyItem struct {
Id int64 `json:"id"` Id int64 `json:"id"`
Serial string `json:"serial"`
Name string `json:"name"` // 公司名称 Name string `json:"name"` // 公司名称
NameEn string `json:"nameEn"` // 公司名称英文 NameEn string `json:"nameEn"` // 公司名称英文
ShortName string `json:"shortName"` // 公司简称 ShortName string `json:"shortName"` // 公司简称
@ -94,6 +95,7 @@ func (l *logisticsCompany) Add(ctx context.Context, args ArgsLogisticsCompanyAdd
type ReplyLogisticsCompanyInfo struct { type ReplyLogisticsCompanyInfo struct {
Id int64 `json:"id"` Id int64 `json:"id"`
Serial string `json:"serial"`
Name string `json:"name"` // 公司名称 Name string `json:"name"` // 公司名称
NameEn string `json:"nameEn"` // 公司名称英文 NameEn string `json:"nameEn"` // 公司名称英文
ShortName string `json:"shortName"` // 公司简称 ShortName string `json:"shortName"` // 公司简称

View File

@ -22,6 +22,7 @@ type PurchaseSearch struct {
CustomShortName string // 客户简称 CustomShortName string // 客户简称
CreatedStaffIds []int64 // 创建人筛选 CreatedStaffIds []int64 // 创建人筛选
FactoryName string // 采购工厂 FactoryName string // 采购工厂
PurchaseIds []int64 // 采购id
} }
type ReplyPurchaseList struct { type ReplyPurchaseList struct {
List []PurchaseItem `json:"list"` List []PurchaseItem `json:"list"`

View File

@ -23,6 +23,7 @@ type SaleSearch struct {
PurchaseStatus []int64 // 采购状态 PurchaseStatus []int64 // 采购状态
ShipmentStatus []int64 // 出舱状态 ShipmentStatus []int64 // 出舱状态
CreatedStaffIds []int64 // 业务员 CreatedStaffIds []int64 // 业务员
SaleIds []int64 // 销售id
BanFlag int64 // 禁用标记 1=禁用2=可用 BanFlag int64 // 禁用标记 1=禁用2=可用
} }
type ReplySaleList struct { type ReplySaleList struct {

View File

@ -23,6 +23,7 @@ type ShipmentSearch struct {
StaffIds []int64 // 业务员筛选 StaffIds []int64 // 业务员筛选
WorkflowStatus []int64 // 审核状态 WorkflowStatus []int64 // 审核状态
IsAudit int64 // 审核状态 是否审核 1=是 2=否 IsAudit int64 // 审核状态 是否审核 1=是 2=否
ShipmentIds []int64 // 出舱id
} }
type ReplyShipmentList struct { type ReplyShipmentList struct {
List []ShipmentItem `json:"list"` List []ShipmentItem `json:"list"`

View File

@ -21,6 +21,7 @@ type CustomsSearch struct {
CustomIds []int64 // 客户筛选 CustomIds []int64 // 客户筛选
StaffIds []int64 // 业务员筛选 StaffIds []int64 // 业务员筛选
IsCancel int64 // 是否有效 IsCancel int64 // 是否有效
CustomsIds []int64 // 报关id
} }
type ReplyCustomsList struct { type ReplyCustomsList struct {
List []CustomsItem `json:"list"` List []CustomsItem `json:"list"`

View File

@ -20,6 +20,7 @@ type ExchangeSettlementSearch struct {
CustomIds []int64 // 客户筛选 CustomIds []int64 // 客户筛选
StaffIds []int64 // 业务员筛选 StaffIds []int64 // 业务员筛选
IsCancel int64 // 是否有效 IsCancel int64 // 是否有效
ExchangeSettlementIds []int64 // 结汇id
} }
type ReplyExchangeSettlementList struct { type ReplyExchangeSettlementList struct {
List []ExchangeSettlementItem `json:"list"` List []ExchangeSettlementItem `json:"list"`

View File

@ -21,6 +21,7 @@ type SerialSearch struct {
CustomIds []int64 // 客户筛选 CustomIds []int64 // 客户筛选
StaffIds []int64 // 业务员筛选 StaffIds []int64 // 业务员筛选
IsCancel int64 // 是否有效 IsCancel int64 // 是否有效
SerialIds []int64 // 商检id
} }
type ReplySerialList struct { type ReplySerialList struct {
List []SerialItem `json:"list"` List []SerialItem `json:"list"`

View File

@ -37,6 +37,7 @@ type WorkflowItem struct {
CreatedStaffId int64 `json:"createdStaffId"` // 创建人 CreatedStaffId int64 `json:"createdStaffId"` // 创建人
CreatedAt *time.Time `json:"createdAt"` // 创建时间 CreatedAt *time.Time `json:"createdAt"` // 创建时间
UpdatedAt *time.Time `json:"updatedAt"` // 更新时间 UpdatedAt *time.Time `json:"updatedAt"` // 更新时间
Data string `json:"data"`
} }
// List @TITLE 审核列表 // List @TITLE 审核列表