[账单]显示账单、手动生成账单

This commit is contained in:
刘祥超
2020-12-11 21:39:10 +08:00
parent 9eaa493e2a
commit cb993259a7
13 changed files with 429 additions and 14 deletions

View File

@@ -13,6 +13,7 @@ type Log struct {
Ip string `field:"ip"` // IP地址
Type string `field:"type"` // 类型admin, user
Day string `field:"day"` // 日期
BillId uint32 `field:"billId"` // 账单ID
}
type LogOperator struct {
@@ -27,6 +28,7 @@ type LogOperator struct {
Ip interface{} // IP地址
Type interface{} // 类型admin, user
Day interface{} // 日期
BillId interface{} // 账单ID
}
func NewLogOperator() *LogOperator {