duxin 2 жил өмнө
parent
commit
ceb02436be

+ 44 - 44
jyBXCore/rpc/etc/bxcore.yaml

@@ -44,47 +44,47 @@ JYKeyMark: " "
 ContextOldVipLimit: 1664553600
 ContextOldVipLimit: 1664553600
 DetailMosaicTxt: 略
 DetailMosaicTxt: 略
 NeedMosaic:
 NeedMosaic:
-  Projectname: true
-  Projectcode: true
-  Budget: true
-  Bidamount: true
-  Buyer: true
-  Buyerperson: true
-  Buyertel: true
-  Buyeraddr: true
-  Agency: true
-  Agencyperson: true
-  Agencytel: true
-  Agencyaddr: true
-  Winner: true
-  S_winner: true
-  Winnerperson: true
-  Winnertel: true
-  Winneraddr: true
-  Docstarttime: true
-  Docendtime: true
-  Bidendtime: true
-  Bidstarttime: true
-  Bidopentime: true
-  Bidopenaddress: true
-  Contractcode: true
-  Signaturedate: true
-  Purchasinglist: true
-  Item: true
-  Purchasing: true
-  Itemname: true
-  Brandname: true
-  Specs: true
-  Model: true
-  Unitname: true
-  Dimensions: true
-  Number: true
-  Unitprice: true
-  Totalprice: true
-  Guaranteetime: true
-  Orderno: true
-  Procurementlist: true
-  Projectscope: true
-  Reserved_amount: true
-  Expurasingtime: true
-  WinnerMap: true
+  projectname: true
+  projectcode: true
+  budget: true
+  bidamount: true
+  buyer: true
+  buyerperson: true
+  buyertel: true
+  buyeraddr: true
+  agency: true
+  agencyperson: true
+  agencytel: true
+  agencyaddr: true
+  winner: true
+  s_winner: true
+  winnerperson: true
+  winnertel: true
+  winneraddr: true
+  docstarttime: true
+  docendtime: true
+  bidendtime: true
+  bidstarttime: true
+  bidopentime: true
+  bidopenaddress: true
+  contractcode: true
+  signaturedate: true
+  purchasinglist: true
+  item: true
+  purchasing: true
+  itemname: true
+  brandname: true
+  specs: true
+  model: true
+  unitname: true
+  dimensions: true
+  number: true
+  unitprice: true
+  totalprice: true
+  guaranteetime: true
+  orderno: true
+  procurementlist: true
+  projectscope: true
+  reserved_amount: true
+  expurasingtime: true
+  winnerMap: true

+ 44 - 44
jyBXCore/rpc/internal/config/config.go

@@ -47,50 +47,50 @@ type Config struct {
 
 
 	DetailMosaicTxt string
 	DetailMosaicTxt string
 	NeedMosaic      struct {
 	NeedMosaic      struct {
-		Projectname     bool
-		Projectcode     bool
-		Budget          bool
-		Bidamount       bool
-		Buyer           bool
-		Buyerperson     bool
-		Buyertel        bool
-		Buyeraddr       bool
-		Agency          bool
-		Agencyperson    bool
-		Agencytel       bool
-		Agencyaddr      bool
-		Winner          bool
-		S_winner        bool
-		Winnerperson    bool
-		Winnertel       bool
-		Winneraddr      bool
-		Docstarttime    bool
-		Docendtime      bool
-		Bidendtime      bool
-		Bidstarttime    bool
-		Bidopentime     bool
-		Bidopenaddress  bool
-		Contractcode    bool
-		Signaturedate   bool
-		Purchasinglist  bool
-		Item            bool
-		Purchasing      bool
-		Itemname        bool
-		Brandname       bool
-		Specs           bool
-		Model           bool
-		Unitname        bool
-		Dimensions      bool
-		Number          bool
-		Unitprice       bool
-		Totalprice      bool
-		Guaranteetime   bool
-		Orderno         bool
-		Procurementlist bool
-		Projectscope    bool
-		Reserved_amount bool
-		Expurasingtime  bool
-		WinnerMap       bool
+		Projectname     bool `json:"projectname"`
+		Projectcode     bool `json:"projectcode"`
+		Budget          bool `json:"budget"`
+		Bidamount       bool `json:"bidamount"`
+		Buyer           bool `json:"buyer"`
+		Buyerperson     bool `json:"buyerperson"`
+		Buyertel        bool `json:"buyertel"`
+		Buyeraddr       bool `json:"buyeraddr"`
+		Agency          bool `json:"agency"`
+		Agencyperson    bool `json:"agencyperson"`
+		Agencytel       bool `json:"agencytel"`
+		Agencyaddr      bool `json:"agencyaddr"`
+		Winner          bool `json:"winner"`
+		SWinner         bool `json:"s_winner"`
+		Winnerperson    bool `json:"winnerperson"`
+		Winnertel       bool `json:"winnertel"`
+		Winneraddr      bool `json:"winneraddr"`
+		Docstarttime    bool `json:"docstarttime"`
+		Docendtime      bool `json:"docendtime"`
+		Bidendtime      bool `json:"bidendtime"`
+		Bidstarttime    bool `json:"bidstarttime"`
+		Bidopentime     bool `json:"bidopentime"`
+		Bidopenaddress  bool `json:"bidopenaddress"`
+		Contractcode    bool `json:"contractcode"`
+		Signaturedate   bool `json:"signaturedate"`
+		Purchasinglist  bool `json:"purchasinglist"`
+		Item            bool `json:"item"`
+		Purchasing      bool `json:"purchasing"`
+		Itemname        bool `json:"itemname"`
+		Brandname       bool `json:"brandname"`
+		Specs           bool `json:"specs"`
+		Model           bool `json:"model"`
+		Unitname        bool `json:"unitname"`
+		Dimensions      bool `json:"dimensions"`
+		Number          bool `json:"number"`
+		Unitprice       bool `json:"unitprice"`
+		Totalprice      bool `json:"totalprice"`
+		Guaranteetime   bool `json:"guaranteetime"`
+		Orderno         bool `json:"orderno"`
+		Procurementlist bool `json:"procurementlist"`
+		Projectscope    bool `json:"projectscope"`
+		ReservedAmount  bool `json:"reserved_amount"`
+		Expurasingtime  bool `json:"expurasingtime"`
+		WinnerMap       bool `json:"winnerMap"`
 	}
 	}
 }
 }