实现网费奖励下发和回调接口
This commit is contained in:
@ -34,6 +34,7 @@ type StoreClientSessionsColumns struct {
|
||||
UpdatedAt string // 更新时间
|
||||
DeletedAt string // 软删除时间戳
|
||||
AreaName string //
|
||||
UserId string // 用户 id
|
||||
}
|
||||
|
||||
// storeClientSessionsColumns holds the columns for the table store_client_sessions.
|
||||
@ -52,6 +53,7 @@ var storeClientSessionsColumns = StoreClientSessionsColumns{
|
||||
UpdatedAt: "updated_at",
|
||||
DeletedAt: "deleted_at",
|
||||
AreaName: "area_name",
|
||||
UserId: "user_id",
|
||||
}
|
||||
|
||||
// NewStoreClientSessionsDao creates and returns a new DAO object for table data access.
|
||||
|
||||
@ -37,6 +37,7 @@ type UsersColumns struct {
|
||||
RoleId string // 角色ID
|
||||
LastLoginStoreId string // 上次登录门店ID
|
||||
Quan8Uuid string // 8圈使用的 uuid
|
||||
XyUserId string // 系统唯一用户ID
|
||||
}
|
||||
|
||||
// usersColumns holds the columns for the table users.
|
||||
@ -58,6 +59,7 @@ var usersColumns = UsersColumns{
|
||||
RoleId: "role_id",
|
||||
LastLoginStoreId: "last_login_store_id",
|
||||
Quan8Uuid: "quan8_uuid",
|
||||
XyUserId: "xy_user_id",
|
||||
}
|
||||
|
||||
// NewUsersDao creates and returns a new DAO object for table data access.
|
||||
|
||||
Reference in New Issue
Block a user