enterprise/common/model/approval_refund.go

25 lines
491 B
Go
Raw Normal View History

2023-08-13 21:24:54 +08:00
package model
var (
ApprovalRefundStatusCreated = 1
ApprovalRefundStatusPayed = 2
2024-01-07 22:54:33 +08:00
ApprovalTypeRefund = "refund"
ApprovalTypeCheckin = "checkin"
ApprovalTypeVacation = "vacation"
2023-08-13 21:24:54 +08:00
)
type ApprovalRefund struct {
Id int64
Username string
2024-01-07 22:54:33 +08:00
Month string
2023-08-13 21:24:54 +08:00
SpNo string
RefundType string
RefundDate string
RefundAmount float64
RefundRemark string
2024-01-07 18:53:21 +08:00
ApplyTime string
2023-08-13 21:24:54 +08:00
Status int
CreateTime int64
UpdateTime int64
}