• haoyanbin's avatar
    1 · 9bf9e037
    haoyanbin authored
    9bf9e037
eqb_model.go 647 Bytes
package utils

type RequestOrganizaReq struct {
	Name      string `json:"name"`
	LegalName string `json:"legalName"`
	LegalIdno string `json:"legalIdno"`
}

type CreateAccountPersonReq struct {
	ThirdId string `json:"thirdId"`
	Name    string `json:"name"`
	IdNo    string `json:"idNo"`
	IdType  int    `json:"idType"`
	Mobile  string `json:"mobile"`
	Email   string `json:"email"`
}

type CreateAccountPersonReply struct {
	ErrCode int                     `json:"errCode"`
	Msg     string                  `json:"msg"`
	Data    CreateAccountPersonData `json:"data"`
}

type CreateAccountPersonData struct {
	AccountId string `json:"accountId"`
}