feat(erp): 添加金蝶推送时间字段到各个ERP模块
- 在expense模块中添加Ik3cloudAtStart和Ik3cloudAtEnd字段 - 在payable模块中添加Ik3cloudAtStart和Ik3cloudAtEnd字段 - 在payment模块中添加Ik3cloudAtStart和Ik3cloudAtEnd字段 - 在receipt模块中添加Ik3cloudAtStart和Ik3cloudAtEnd字段 - 在receivable模块中添加Ik3cloudAtStart和Ik3cloudAtEnd字段 - 在request模块中添加Ik3cloudAtStart和Ik3cloudAtEnd字段
This commit is contained in:
@@ -36,6 +36,8 @@ type ExpenseSearch struct {
|
|||||||
Ik3cloudStatus int64 // ik3cloud状态
|
Ik3cloudStatus int64 // ik3cloud状态
|
||||||
PermissionStaffIds []int64 // 权限员工id
|
PermissionStaffIds []int64 // 权限员工id
|
||||||
Ik3cloudStatuses []int64 // 金蝶推送状态
|
Ik3cloudStatuses []int64 // 金蝶推送状态
|
||||||
|
Ik3cloudAtStart *time.Time // 金蝶推送开始时间
|
||||||
|
Ik3cloudAtEnd *time.Time // 金蝶推送结束时间
|
||||||
}
|
}
|
||||||
type ReplyExpenseList struct {
|
type ReplyExpenseList struct {
|
||||||
List []ExpenseItem `json:"list"`
|
List []ExpenseItem `json:"list"`
|
||||||
|
|||||||
@@ -26,6 +26,8 @@ type PayableSearch struct {
|
|||||||
IsConfirm int64 // 是否确认
|
IsConfirm int64 // 是否确认
|
||||||
PermissionStaffIds []int64 // 权限员工id
|
PermissionStaffIds []int64 // 权限员工id
|
||||||
Ik3cloudStatuses []int64 // 金蝶推送状态
|
Ik3cloudStatuses []int64 // 金蝶推送状态
|
||||||
|
Ik3cloudAtStart *time.Time // 金蝶推送开始时间
|
||||||
|
Ik3cloudAtEnd *time.Time // 金蝶推送结束时间
|
||||||
}
|
}
|
||||||
type ReplyPayableList struct {
|
type ReplyPayableList struct {
|
||||||
List []PayableItem `json:"list"`
|
List []PayableItem `json:"list"`
|
||||||
|
|||||||
@@ -27,6 +27,8 @@ type PaymentSearch struct {
|
|||||||
BankAccount string // 银行账号
|
BankAccount string // 银行账号
|
||||||
BankName string // 账号名称
|
BankName string // 账号名称
|
||||||
Ik3cloudStatuses []int64 // 金蝶推送状态
|
Ik3cloudStatuses []int64 // 金蝶推送状态
|
||||||
|
Ik3cloudAtStart *time.Time // 金蝶推送开始时间
|
||||||
|
Ik3cloudAtEnd *time.Time // 金蝶推送结束时间
|
||||||
}
|
}
|
||||||
type ReplyPaymentList struct {
|
type ReplyPaymentList struct {
|
||||||
Total int64 `json:"total"`
|
Total int64 `json:"total"`
|
||||||
|
|||||||
@@ -42,6 +42,8 @@ type ReceiptSearch struct {
|
|||||||
PermissionStaffIds []int64 // 权限员工id
|
PermissionStaffIds []int64 // 权限员工id
|
||||||
CurrencyEq *string // 币种
|
CurrencyEq *string // 币种
|
||||||
Ik3cloudStatuses []int64 // 金蝶推送状态
|
Ik3cloudStatuses []int64 // 金蝶推送状态
|
||||||
|
Ik3cloudAtStart *time.Time // 金蝶推送开始时间
|
||||||
|
Ik3cloudAtEnd *time.Time // 金蝶推送结束时间
|
||||||
}
|
}
|
||||||
type ReplyReceiptList struct {
|
type ReplyReceiptList struct {
|
||||||
List []ReceiptItem `json:"list"`
|
List []ReceiptItem `json:"list"`
|
||||||
|
|||||||
@@ -25,6 +25,8 @@ type ReceivableSearch struct {
|
|||||||
CreatedAtEnd *time.Time // 创建结束时间
|
CreatedAtEnd *time.Time // 创建结束时间
|
||||||
PermissionStaffIds []int64 // 权限员工id
|
PermissionStaffIds []int64 // 权限员工id
|
||||||
Ik3cloudStatuses []int64 // 金蝶推送状态
|
Ik3cloudStatuses []int64 // 金蝶推送状态
|
||||||
|
Ik3cloudAtStart *time.Time // 金蝶推送开始时间
|
||||||
|
Ik3cloudAtEnd *time.Time // 金蝶推送结束时间
|
||||||
}
|
}
|
||||||
type ReplyReceivableList struct {
|
type ReplyReceivableList struct {
|
||||||
List []ReceivableItem `json:"list"`
|
List []ReceivableItem `json:"list"`
|
||||||
|
|||||||
@@ -45,6 +45,8 @@ type RequestSearch struct {
|
|||||||
FactoryName string // 工厂名称
|
FactoryName string // 工厂名称
|
||||||
PermissionStaffIds []int64 // 权限员工id
|
PermissionStaffIds []int64 // 权限员工id
|
||||||
Ik3cloudStatuses []int64 // 金蝶推送状态
|
Ik3cloudStatuses []int64 // 金蝶推送状态
|
||||||
|
Ik3cloudAtStart *time.Time // 金蝶推送开始时间
|
||||||
|
Ik3cloudAtEnd *time.Time // 金蝶推送结束时间
|
||||||
}
|
}
|
||||||
type ReplyRequestList struct {
|
type ReplyRequestList struct {
|
||||||
List []RequestItem `json:"list"`
|
List []RequestItem `json:"list"`
|
||||||
|
|||||||
Reference in New Issue
Block a user