CertApplyThirdCompanyRequest.go 687 B

123456789101112
  1. package common
  2. // 【法人单位】法人单位 【作用】 指定要申请证书的法人单位 【传参】 若同时传入companyRequest中的四个参数,不支持依次查询 查询优先级:Id>name>registerNo>openCompanyId
  3. type CertApplyThirdCompanyRequest struct {
  4. // <ext>core:true</ext> 【法人单位id】法人单位id
  5. Id *int64 `json:"id,omitempty"`
  6. // <ext>core:true</ext> 【法人单位名称】法人单位名称
  7. Name string `json:"name,omitempty"`
  8. // <ext>core:true</ext> 【法人单位代码】法人单位代码 【传参】 支持传入当前单位存储的统一社会信用代码或工商注册号
  9. RegisterNo string `json:"registerNo,omitempty"`
  10. }