parent
4e5b75ca15
commit
73de605aff
@ -0,0 +1,52 @@
|
||||
package user
|
||||
|
||||
import (
|
||||
"git.oa00.com/supply-chain/service/client"
|
||||
"git.oa00.com/supply-chain/service/lib/bean"
|
||||
"golang.org/x/net/context"
|
||||
)
|
||||
|
||||
type cash struct {
|
||||
}
|
||||
|
||||
type ArgsCashList struct {
|
||||
Search CashSearch
|
||||
bean.Page
|
||||
}
|
||||
|
||||
type CashSearch struct {
|
||||
Status uint // 状态 1=待审核 2=通过 3=驳回
|
||||
UserId uint // 客户id
|
||||
}
|
||||
|
||||
type CashItem struct {
|
||||
Id uint
|
||||
UserId uint // 客户id
|
||||
UserName string // 客户名称
|
||||
BkName string // 银行名称
|
||||
BankCode string // 银行卡号
|
||||
BankName string // 银行账户名
|
||||
AuditUserId uint // 审核人
|
||||
Status uint // 审核状态 1=待审核 2=通过 3=驳回
|
||||
Reason string // 驳回原因
|
||||
CreatedAt int64
|
||||
}
|
||||
|
||||
type ReplyCashLists struct {
|
||||
Lists []CashItem
|
||||
Total int64
|
||||
}
|
||||
|
||||
// Lists @Title 列表
|
||||
func (cash *cash) Lists(ctx context.Context, args ArgsCashList) (reply ReplyCashLists, err error) {
|
||||
xClient, err := client.GetClient(cash)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
err = xClient.Call(ctx, "Lists", args, &reply)
|
||||
return
|
||||
}
|
||||
|
||||
// Adopt @Title 审核通过
|
||||
|
||||
// Reject @Title 审核驳回
|
Loading…
Reference in new issue