generated from PenaSide/GolangTemplate
26 lines
449 B
Go
26 lines
449 B
Go
package fields
|
|
|
|
var Account = struct {
|
|
ID string
|
|
UserID string
|
|
Cart string
|
|
Wallet string
|
|
Name string
|
|
Status string
|
|
IsDeleted string
|
|
CreatedAt string
|
|
UpdatedAt string
|
|
DeletedAt string
|
|
}{
|
|
ID: "_id",
|
|
UserID: "userId",
|
|
Cart: "cart",
|
|
Wallet: "wallet",
|
|
Name: "name",
|
|
Status: "status",
|
|
IsDeleted: "isDeleted",
|
|
CreatedAt: "createdAt",
|
|
UpdatedAt: "updatedAt",
|
|
DeletedAt: "deletedAt",
|
|
}
|