Browse Source

工商补充字段

1 1 week ago
parent
commit
e090217134
1 changed files with 47 additions and 0 deletions
  1. 47 0
      common/models/gsnb.go

+ 47 - 0
common/models/gsnb.go

@@ -8,6 +8,7 @@ type GsnbSpecialEquipment struct {
 	MainID              uint `json:"mainId"`              // 主表id
 	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"`                 // 是否公示 0公示 1不公示
+	SzOverallShow               int     `json:"szOverallShow"`               // 深圳专用:社保信息是否公示,这个直接把子项全部控制  0公示 1不公示
 }
 
 // 股东及出资信息
@@ -166,6 +168,8 @@ type GsnbAsset struct {
 	Assignable           float64 `json:"assignable"`           //可分配盈余
 	Return               float64 `json:"return"`               //按交易量返还成员总额
 	Remain               float64 `json:"remain"`               //剩余盈余分配总额
+	SzOverallShow        int     `json:"szOverallShow"`        // 深圳专用:是否公示资产状况信息,这个直接把子项全部控制  0公示 1不公示
+	SzAllowAssetInfo     int     `json:"szAllowAssetInfo"`     // 深圳专用:是否授权本系统从深圳市税务局获取资产状况信息 0是 1否
 }
 
 // 海关报关信息
@@ -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"` // 统一社会信用代码/注册号
+}
+
+// GsnbCorpDonation 企业捐赠榜申报 深圳用
+type GsnbCorpDonation struct {
+	ID               uint           `json:"id"`                // 主键
+	MainID           uint           `json:"mainId"`            // 主表id
+	NeedFillIn       int            `json:"needFillIn"`        //  是否需要填写企业捐赠榜申报信息 0是 1否
+	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"` // 元
+}
+
+// GsnbCustomGood 海关减免税监督货物 深圳
+type GsnbCustomGood struct {
+	GoodSituation          int    `json:"goodSituation"`          // 减免税进口货物安装地点、使用情况 0正常 1异常
+	GoodDisposal           int    `json:"goodDisposal"`           // 减免税进口货物调换抵押质押留置......的事情 0有1无
+	GoodUseMatter          int    `json:"goodUseMatter"`          // 减免税进口货物未按照特定用途、特定地区、特定企业使用的事情 0有1无
+	GoodSame               int    `json:"goodSame"`               // 实际进口的减免税货物的规格、型号...是否与申请时相同 0是1否
+	ApplicantRestructuring int    `json:"applicantRestructuring"` // 减免税申请人改制、股权转让....其他资产重组情况 0有1无
+	FixedAssetAccount      int    `json:"fixedAssetAccount"`      // 减免税进口货物是否已入本单位固定资产账 0是1否
+	OtherSituation         string `json:"otherSituation"`         // 其他需要向海关说明的情况
+}