mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2024-11-14 22:49:21 +08:00
25 lines
587 B
Go
25 lines
587 B
Go
package response
|
|
|
|
import "legend/models/legend"
|
|
|
|
type AddTemplateResp struct {
|
|
Code int
|
|
Msg string
|
|
}
|
|
|
|
type TemplateListResp struct {
|
|
Code int `json:"code"`
|
|
Msg string `json:"msg"`
|
|
Count int `json:"count"`
|
|
Data []legend.ScaleTemplate `json:"data"`
|
|
}
|
|
|
|
type TemplateAllInfoResp struct {
|
|
AddTemplateResp
|
|
TemplateInfo *legend.ScaleTemplate
|
|
AnyMoneyInfo *legend.AnyMoney
|
|
FixMoneyInfos []legend.FixMoney
|
|
PresentFixMoneyInfos []legend.FixPresent
|
|
PresentScaleMoneyInfos []legend.ScalePresent
|
|
}
|