소스 검색

moved IsApp to Type

Tobias von Dewitz 3 년 전
부모
커밋
5c72a066ee
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      request_data.go

+ 1 - 1
request_data.go

@@ -40,7 +40,7 @@ type RequestData struct {
 	Customer       string                 `bson:"customer" json:"customer,omitempty" form:"customer,omitempty" url:"customer,omitempty"`
 	DataRaw        map[string]interface{} `bson:"data_raw" json:"data_raw,omitempty" form:"data_raw,omitempty" url:"data_raw,omitempty"`
 	Weight         uint64                 `bson:"weight" json:"weight,omitempty" form:"weight,omitempty" url:"weight,omitempty"`
-	IsApp          bool                   `bson:"app" json:"app,omitempty" form:"app:omitempty" url:"app,omitempty"`
+	Type           string                 `bson:"type" json:"type,omitempty" form:"type:omitempty" url:"type,omitempty"`
 	Grs            grs.GRS                `bson:"grs" json:"grs,omitempty" form:"grs,omitempty" url:"grs,omitempty"`
 }