21 lines
346 B
Go
21 lines
346 B
Go
|
package model
|
||
|
|
||
|
var (
|
||
|
ApprovalRefundStatusCreated = 1
|
||
|
ApprovalRefundStatusPayed = 2
|
||
|
)
|
||
|
|
||
|
type ApprovalRefund struct {
|
||
|
Id int64
|
||
|
Username string
|
||
|
SpNo string
|
||
|
RefundType string
|
||
|
RefundDate string
|
||
|
RefundAmount float64
|
||
|
RefundRemark string
|
||
|
ApplyTime int64
|
||
|
Status int
|
||
|
CreateTime int64
|
||
|
UpdateTime int64
|
||
|
}
|