|
@@ -11,13 +11,13 @@ import (
|
|
)
|
|
)
|
|
|
|
|
|
type UserAccessDTO struct {
|
|
type UserAccessDTO struct {
|
|
- ID int
|
|
|
|
- TemplateUserId int
|
|
|
|
- ProductID int
|
|
|
|
- ProductType string
|
|
|
|
- BeginDate string
|
|
|
|
- EndDate string
|
|
|
|
- Status string
|
|
|
|
|
|
+ ID int `json:"id"`
|
|
|
|
+ TemplateUserId int `json:"templateUserId"`
|
|
|
|
+ ProductID int `json:"productID"`
|
|
|
|
+ ProductType string `json:"productType"`
|
|
|
|
+ BeginDate string `json:"beginDate"`
|
|
|
|
+ EndDate string `json:"endDate"`
|
|
|
|
+ Status string `json:"status"`
|
|
}
|
|
}
|
|
|
|
|
|
var (
|
|
var (
|