소스 검색

增加系统配置接口

kobe6258 5 달 전
부모
커밋
622bac6625
1개의 변경된 파일7개의 추가작업 그리고 7개의 파일을 삭제
  1. 7 7
      domian/merchant/user_access_service.go

+ 7 - 7
domian/merchant/user_access_service.go

@@ -11,13 +11,13 @@ import (
 )
 
 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 (