parent
f754486b4a
commit
8fe1107cf1
@ -1,5 +1,31 @@
|
|||||||
package supplier
|
package supplier
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"git.oa00.com/supply-chain/service/client"
|
||||||
|
)
|
||||||
|
|
||||||
type Supplier struct {
|
type Supplier struct {
|
||||||
Goods goods
|
Goods goods
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type ArgsSupplierAdd struct {
|
||||||
|
SupplierName string // 供应商名称
|
||||||
|
Account string // 账户
|
||||||
|
Password string // 密码
|
||||||
|
PayType uint // 结算类型
|
||||||
|
Liaison string // 联系人
|
||||||
|
Phone string // 手机号
|
||||||
|
Annex string // 附件
|
||||||
|
ApplyUserId uint // 申请人Id
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add @Title 添加供应商
|
||||||
|
func (s *Supplier) Add(ctx context.Context, args ArgsSupplierAdd) error {
|
||||||
|
xClient, err := client.GetClient(s)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
reply := 0
|
||||||
|
return xClient.Call(ctx, "Add", args, &reply)
|
||||||
|
}
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
package user
|
|
||||||
|
|
||||||
type supplier struct {
|
|
||||||
}
|
|
||||||
|
|
||||||
type ArgsSupplierAdd struct {
|
|
||||||
Name string
|
|
||||||
Account string
|
|
||||||
Password string
|
|
||||||
PayType uint
|
|
||||||
Liaison string
|
|
||||||
Phone string
|
|
||||||
Annex string
|
|
||||||
}
|
|
||||||
|
|
||||||
func (s *supplier) Add() {
|
|
||||||
|
|
||||||
}
|
|
@ -1,13 +0,0 @@
|
|||||||
package user
|
|
||||||
|
|
||||||
type User struct {
|
|
||||||
Supplier supplier
|
|
||||||
}
|
|
||||||
|
|
||||||
type ArgsUserAdd struct {
|
|
||||||
Name string // 姓名
|
|
||||||
Account string // 账户
|
|
||||||
Password string // 密码
|
|
||||||
Liaison string // 联系然
|
|
||||||
Phone string // 手机号
|
|
||||||
}
|
|
Loading…
Reference in new issue