소스 검색

added an IsApp flag to RequestData

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

+ 1 - 0
request_data.go

@@ -40,6 +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"`
 	Grs            grs.GRS                `bson:"grs" json:"grs,omitempty" form:"grs,omitempty" url:"grs,omitempty"`
 }