16 lines
369 B
Go
16 lines
369 B
Go
![]() |
package fields
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
var Audit = struct {
|
||
|
UpdatedAt string
|
||
|
DeletedAt string
|
||
|
CreatedAt string
|
||
|
Deleted string
|
||
|
}{
|
||
|
UpdatedAt: fmt.Sprintf("%s.updatedAt", Discount.Audit),
|
||
|
DeletedAt: fmt.Sprintf("%s.deletedAt", Discount.Audit),
|
||
|
CreatedAt: fmt.Sprintf("%s.createdAt", Discount.Audit),
|
||
|
Deleted: fmt.Sprintf("%s.deleted", Discount.Audit),
|
||
|
}
|