feat: sale add create user

This commit is contained in:
zzw
2026-09-02 09:47:34 +08:00
parent ad4bc7de85
commit 540f74f9b7
39 changed files with 2023 additions and 282 deletions
+11
View File
@@ -0,0 +1,11 @@
package dao
type Client struct {
Id int64 `gorm:"column:id;primaryKey;autoIncrement" json:"id"`
Code string `gorm:"column:code" json:"code"`
Name string `gorm:"column:name" json:"name"`
AllowedGrants string `gorm:"column:allowed_grants;type:json" json:"allowed_grants"`
SubjectType string `gorm:"column:subject_type" json:"subject_type"`
StoreStaff uint8 `gorm:"column:store_staff" json:"store_staff"`
Status uint8 `gorm:"column:status" json:"status"`
}