|
@@ -8,6 +8,7 @@ type GsnbSpecialEquipment struct {
|
|
|
MainID uint `json:"mainId"`
|
|
|
RegisterFacilityNum int `json:"registerFacilityNum"`
|
|
|
ValidFacilityNum int `json:"validFacilityNum"`
|
|
|
+ SzRegistration int `json:"szRegistration"`
|
|
|
}
|
|
|
|
|
|
|
|
@@ -37,6 +38,7 @@ type GsnbSocialSecurity struct {
|
|
|
ArrearsEmploymentInjury float64 `json:"arrearsEmploymentInjury"`
|
|
|
ArrearsBirth float64 `json:"arrearsBirth"`
|
|
|
ArrearsShow int `json:"arrearsShow"`
|
|
|
+ SzOverallShow int `json:"szOverallShow"`
|
|
|
}
|
|
|
|
|
|
|
|
@@ -166,6 +168,8 @@ type GsnbAsset struct {
|
|
|
Assignable float64 `json:"assignable"`
|
|
|
Return float64 `json:"return"`
|
|
|
Remain float64 `json:"remain"`
|
|
|
+ SzOverallShow int `json:"szOverallShow"`
|
|
|
+ SzAllowAssetInfo int `json:"szAllowAssetInfo"`
|
|
|
}
|
|
|
|
|
|
|
|
@@ -275,3 +279,46 @@ type GsnbStatisticalMatters struct {
|
|
|
Year string `json:"year" gorm:"-"`
|
|
|
ComId uint `json:"comId" gorm:"-"`
|
|
|
}
|
|
|
+
|
|
|
+type GsnbInvestment struct {
|
|
|
+ CorpName string `json:"corpName"`
|
|
|
+ CreditCode string `json:"creditCode"`
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+type GsnbCorpDonation struct {
|
|
|
+ ID uint `json:"id"`
|
|
|
+ MainID uint `json:"mainId"`
|
|
|
+ NeedFillIn int `json:"needFillIn"`
|
|
|
+ CorpNature string `json:"corpNature"`
|
|
|
+ CorpContacts string `json:"corpContacts"`
|
|
|
+ CorpTel string `json:"corpTel"`
|
|
|
+ Remark string `json:"Remark"`
|
|
|
+ DonateAmount string `json:"donateAmount"`
|
|
|
+ CashAmount string `json:"cashAmount"`
|
|
|
+ SecuritiesAmount string `json:"securitiesAmount"`
|
|
|
+ GoodsAmount string `json:"goodsAmount"`
|
|
|
+ StockAmount string `json:"stockAmount"`
|
|
|
+ OtherAmount string `json:"otherAmount"`
|
|
|
+ FlowLocations []FlowLocation `json:"gsnbFlowLocations"`
|
|
|
+ Year string `json:"year" gorm:"-"`
|
|
|
+ ComId uint `json:"comId" gorm:"-"`
|
|
|
+}
|
|
|
+type FlowLocation struct {
|
|
|
+ Sz string `json:"sz"`
|
|
|
+ SzHelp string `json:"szHelp"`
|
|
|
+ Other string `json:"other"`
|
|
|
+ Class string `json:"class"`
|
|
|
+ Amount string `json:"amount"`
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+type GsnbCustomGood struct {
|
|
|
+ GoodSituation int `json:"goodSituation"`
|
|
|
+ GoodDisposal int `json:"goodDisposal"`
|
|
|
+ GoodUseMatter int `json:"goodUseMatter"`
|
|
|
+ GoodSame int `json:"goodSame"`
|
|
|
+ ApplicantRestructuring int `json:"applicantRestructuring"`
|
|
|
+ FixedAssetAccount int `json:"fixedAssetAccount"`
|
|
|
+ OtherSituation string `json:"otherSituation"`
|
|
|
+}
|