2023-05-23 10:52:27 +00:00
|
|
|
package fields
|
|
|
|
|
|
|
|
var History = struct {
|
|
|
|
ID string
|
|
|
|
UserID string
|
|
|
|
Comment string
|
|
|
|
Subject string
|
|
|
|
Type string
|
2023-06-16 09:47:11 +00:00
|
|
|
IsDeleted string
|
2023-05-23 10:52:27 +00:00
|
|
|
CreatedAt string
|
|
|
|
UpdatedAt string
|
|
|
|
DeletedAt string
|
|
|
|
}{
|
|
|
|
ID: "_id",
|
|
|
|
UserID: "userId",
|
|
|
|
Comment: "comment",
|
|
|
|
Subject: "subject",
|
2023-09-14 21:15:47 +00:00
|
|
|
Type: "key",
|
2023-06-16 09:47:11 +00:00
|
|
|
IsDeleted: "isDeleted",
|
2023-05-23 10:52:27 +00:00
|
|
|
CreatedAt: "createdAt",
|
|
|
|
UpdatedAt: "updatedAt",
|
|
|
|
DeletedAt: "deletedAt",
|
|
|
|
}
|