feat(charge):增加计费记录查询功能,待测。

This commit is contained in:
徐涛
2022-08-15 11:17:21 +08:00
parent 9b2f869220
commit a48e63d798
6 changed files with 117 additions and 0 deletions

View File

@@ -22,3 +22,12 @@ type UserCharge struct {
func (UserCharge) TableName() string {
return "user_charge"
}
type ChargeWithName struct {
UserDetail `xorm:"extends"`
UserCharge `xorm:"extends"`
}
func (ChargeWithName) TableName() string {
return "user_charge"
}