platform

package
v0.0.0-...-01c5a3f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 26, 2024 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type EnterpriseCodeAccount

type EnterpriseCodeAccount struct {
	common.Model
	common.ExtraModel
	PaymentAccountNum    string `gorm:"column:payment_account_num;comment:支付账户;" json:"paymentAccountNum" form:"paymentAccountNum"`            //  支付账户
	AppId                string `gorm:"column:app_id;comment:app_id;" json:"appId" form:"appId"`                                               //  app_id
	PrivateKey           string `gorm:"column:private_key;comment:应用私钥;" json:"privateKey" form:"privateKey"`                                  //  应用私钥
	PublicKey            string `gorm:"column:public_key;comment:支付宝公钥;" json:"publicKey" form:"publicKey"`                                    //  支付宝公钥
	IdentityNum          string `gorm:"column:identity_num;comment:企业支付宝会员id;" json:"identityNum" form:"identityNum"`                          //  企业支付宝会员id
	PlatformEnterpriseId string `gorm:"column:platform_enterprise_id;comment:平台企业id;" json:"platformEnterpriseId" form:"platformEnterpriseId"` //  平台企业id
	PlatformAccountId    string `gorm:"column:platform_account_id;comment:平台账户id;" json:"platformAccountId" form:"platformAccountId"`          //  平台账户id
	SignUrl              string `gorm:"column:sign_url;comment:签约链接;" json:"signUrl" form:"signUrl"`                                           //  签约链接
}

企业码账户

func (EnterpriseCodeAccount) TableName

func (EnterpriseCodeAccount) TableName() string

type EnterpriseCodeAccountRequest

type EnterpriseCodeAccountRequest struct {
	request.PageInfo
	EnterpriseCodeAccount
}

企业码账户申请

type EnterpriseCodeEmployee

type EnterpriseCodeEmployee struct {
	common.Model
	common.ExtraModel
	EnterpriseCodeAccountId *int64 `` //  企业码账户id
	/* 129-byte string literal not displayed */
	EnterpriseCodeRuleId *int64 `gorm:"column:enterprise_code_rule_id;comment:企业码规则id;" json:"enterpriseCodeRuleId" form:"enterpriseCodeRuleId"` //  企业码规则id
	PaymentAccountNum    string `gorm:"column:payment_account_num;comment:支付账户;" json:"paymentAccountNum" form:"paymentAccountNum"`              //  支付账户
	ContactNum           string `gorm:"column:contact_num;comment:联系电话;" json:"contactNum" form:"contactNum"`                                    //  联系电话
	SignUrl              string `gorm:"column:sign_url;comment:签约链接;" json:"signUrl" form:"signUrl"`                                             //  签约链接
	EnterpriseCode       string `gorm:"column:enterprise_code;comment:企业码;" json:"enterpriseCode" form:"enterpriseCode"`                         //  企业码
	PlatformEmployeeId   string `gorm:"column:platform_employee_id;comment:平台员工id;" json:"platformEmployeeId" form:"platformEmployeeId"`         //  平台员工id

	EnterpriseCodeAccount EnterpriseCodeAccount `` //  企业码账户
	/* 146-byte string literal not displayed */
	EnterpriseCodeRule EnterpriseCodeRule `` //  企业码规则
	/* 137-byte string literal not displayed */
}

企业码员工

func (EnterpriseCodeEmployee) TableName

func (EnterpriseCodeEmployee) TableName() string

type EnterpriseCodeEmployeeRequest

type EnterpriseCodeEmployeeRequest struct {
	request.PageInfo
	EnterpriseCodeEmployee
}

企业码员工申请

type EnterpriseCodeRule

type EnterpriseCodeRule struct {
	common.Model
	common.ExtraModel
	EnterpriseCodeAccountId *int64 `` //  企业码账户id
	/* 129-byte string literal not displayed */
	DailyLimit     float64           `gorm:"column:daily_limit;comment:日消费额度;" json:"dailyLimit" form:"dailyLimit"`               //  日消费额度
	StartTime      common.CustomTime `gorm:"column:start_time;comment:开始时间;" json:"startTime" form:"startTime"`                   //  开始时间
	EndTime        common.CustomTime `gorm:"column:end_time;comment:截止时间;" json:"endTime" form:"endTime"`                         //  截止时间
	PlatformRuleId string            `gorm:"column:platform_rule_id;comment:平台规则id;" json:"platformRuleId" form:"platformRuleId"` //  平台规则id

	EnterpriseCodeAccount EnterpriseCodeAccount `` //  企业码账户
	/* 146-byte string literal not displayed */
}

企业码规则

func (EnterpriseCodeRule) TableName

func (EnterpriseCodeRule) TableName() string

type EnterpriseCodeRuleRequest

type EnterpriseCodeRuleRequest struct {
	request.PageInfo
	EnterpriseCodeRule
}

企业码规则申请

type PaymentAccount

type PaymentAccount struct {
	common.Model
	common.ExtraModel
	PaymentAccountNum string `gorm:"column:payment_account_num;comment:支付账户;" json:"paymentAccountNum" form:"paymentAccountNum"` //  支付账户
	AppId             string `gorm:"column:app_id;comment:app_id;" json:"appId" form:"appId"`                                    //  app_id
	PrivateKey        string `gorm:"column:private_key;comment:应用私钥;" json:"privateKey" form:"privateKey"`                       //  应用私钥
	PublicKey         string `gorm:"column:public_key;comment:支付宝公钥;" json:"publicKey" form:"publicKey"`                         //  支付宝公钥
}

支付账户

func (PaymentAccount) TableName

func (PaymentAccount) TableName() string

type PaymentAccountRequest

type PaymentAccountRequest struct {
	request.PageInfo
	PaymentAccount
}

支付账户申请

type PlatformAccount

type PlatformAccount struct {
	common.Model
	common.ExtraModel
	AppKey              string            `gorm:"column:app_key;comment:app_key;" json:"appKey" form:"appKey"`                                        //  app_key
	AppSecret           string            `gorm:"column:app_secret;comment:app_secret;" json:"appSecret" form:"appSecret"`                            //  app_secret
	ApiUrl              string            `gorm:"column:api_url;comment:api地址;" json:"apiUrl" form:"apiUrl"`                                          //  api地址
	PlatformAgentId     string            `gorm:"column:platform_agent_id;comment:平台代理id;" json:"platformAgentId" form:"platformAgentId"`             //  平台代理id
	SessionKey          string            `gorm:"column:session_key;comment:session_key;" json:"sessionKey" form:"sessionKey"`                        //  session_key
	TmcUrl              string            `gorm:"column:tmc_url;comment:tmc地址;" json:"tmcUrl" form:"tmcUrl"`                                          //  tmc地址
	PlatformType        *int64            `gorm:"column:platform_type;comment:平台类型;" json:"platformType" form:"platformType"`                         //  平台类型
	PlatformAccountType *int64            `gorm:"column:platform_account_type;comment:平台账户类型;" json:"platformAccountType" form:"platformAccountType"` //  平台账户类型
	StartTime           common.CustomTime `gorm:"column:start_time;comment:开始时间;" json:"startTime" form:"startTime"`                                  //  开始时间
	EndTime             common.CustomTime `gorm:"column:end_time;comment:截止时间;" json:"endTime" form:"endTime"`                                        //  截止时间

}

平台账户

func (PlatformAccount) TableName

func (PlatformAccount) TableName() string

type PlatformAccountRequest

type PlatformAccountRequest struct {
	request.PageInfo
	PlatformAccount
}

平台账户申请

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL