enterprise/common/model/external_corp.go

41 lines
751 B
Go
Raw Normal View History

2025-03-05 16:44:20 +08:00
package model
type ExternalCorpOrder struct {
Id int64
AdminId int64
AdminName string
UserId int64
CorpId int64
GoodsId int64
GoodsName string
GoodsType string
OutTradeNo string
TotalFee int64
PaySource string
PayType string
PayTime int64
RefundTime int64
RefundFee int64
RefundReason string
Status uint8
ProcessStatus uint8
ProcessId int64
Hidden bool
Extra string
CreateTime int64
}
2025-03-06 00:41:45 +08:00
type ExternalCorpUser struct {
Id int64
CorpId int64
Realname string
Username string
Role int64
Level int8
Pid int64
Config string
Status int8
CreateTime int64
UpdateTime int64
}