dtm/examples/types.go
yedongfu ff6b6e79b4 e2p
2021-05-27 20:54:00 +08:00

14 lines
220 B
Go

package examples
import "github.com/yedf/dtm/common"
var e2p = common.E2P
type UserAccount struct {
common.ModelBase
UserId int
Balance string
}
func (u *UserAccount) TableName() string { return "user_account" }