feat: sale add create user
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package dao
|
||||
|
||||
import "lone-services/pkg/utils"
|
||||
|
||||
type UserClient struct {
|
||||
Id int64 `gorm:"column:id;primaryKey;autoIncrement" json:"id"`
|
||||
UserId int64 `gorm:"column:user_id" json:"user_id"`
|
||||
ClientCode string `gorm:"column:client_code" json:"client_code"`
|
||||
Status uint8 `gorm:"column:status" json:"status"`
|
||||
OpenedAt utils.CustomTime `gorm:"column:opened_at" json:"opened_at"`
|
||||
}
|
||||
Reference in New Issue
Block a user