V2SealInnercompanyCustomparamCertSeallistRequest.go 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. package v2seal_request
  2. import (
  3. "encoding/json"
  4. "git.sxidc.com/student-physical-examination/contract_lock_sdk/http"
  5. "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
  6. )
  7. type V2SealInnercompanyCustomparamCertSeallistRequest struct {
  8. // <ext>core:true</ext> 【印章形式】印章形式 【传参】 取值范围:ELECTRONIC(电子印章),PHYSICS(物理印章),UKEY(Ukey印章),MOBILE(移动印章);不传值默认为:ELECTRONIC(电子印章)。
  9. SealAttribute string `json:"sealAttribute,omitempty"`
  10. // <ext>core:true</ext> 【印章状态】印章状态 【作用】 查询指定状态的印章 【传参】 取值范围:ALL(查询所有印章),WAIT_CREATE(待制作),NORMAL(正常),FREEZE(冻结),DELETE(删除),INVALID(失效),REVOKE(注销),REVOKING(注销中),CHANGING(变更中);不传值默认为:NORMAL(正常)。
  11. SealQueryStatus string `json:"sealQueryStatus,omitempty"`
  12. // <ext>core:true</ext> 【印章类型名称】印章类型名称 【传参】 传入在电子签章前台“印章类型管理”中维护的印章类型名称。
  13. SealCategoryName string `json:"sealCategoryName,omitempty"`
  14. // <ext>core:true</ext> 【印章自定义字段】印章自定义字段 【作用】 1、除印章类型、所属组织等基础信息以外,印章可能需要维护其他属性,例如保管部门、所用文种等 2、自定义字段可在电子签章前台配置,定义好后可通过该参数传入字段值或修改字段值 3、传入多个自定义字段时,则取各个字段匹配到的印章的交集。
  15. SealCustomFields []*common.SealCustomField `json:"sealCustomFields,omitempty"`
  16. // <ext>core:true;format:date</ext> 【起始更新时间】起始更新时间 【作用】 查询该时间之后更新的印章列表 【传参】 1、日期格式:yyyy-MM-dd HH:mm:ss。 2、不传则开始时间不限制。
  17. UpdateTimeStart string `json:"updateTimeStart,omitempty"`
  18. // <ext>core:true;format:date</ext> 【截止更新时间】截止更新时间 【作用】 查询该时间之前更新的印章列表 【传参】 1、日期格式:yyyy-MM-dd HH:mm:ss。 2、不传则截止时间不限制。
  19. UpdateTimeEnd string `json:"updateTimeEnd,omitempty"`
  20. // <ext>core:true</ext> 【查询开始位置 】查询开始位置 【作用】 指定从哪条数据开始查询 【传参】 最小值:0(包含)。最大值:无限制。不传值默认为:0。
  21. SelectOffset *int64 `json:"selectOffset,omitempty"`
  22. // <ext>core:true</ext> 【查询限制条数 】查询限制条数 【作用】 限制本次查询返回的最大条数 【传参】 最小值:0(包含)。最大值:10。不传值默认为:全部。
  23. SelectLimit *int64 `json:"selectLimit,omitempty"`
  24. }
  25. func (obj V2SealInnercompanyCustomparamCertSeallistRequest) GetUrl() string {
  26. return "/v2/seal/innercompany/customparam/cert/seallist"
  27. }
  28. func (obj V2SealInnercompanyCustomparamCertSeallistRequest) GetHttpParameter() *http.HttpParameter {
  29. parameter := http.NewPostHttpParameter()
  30. jsonBytes, _ := json.Marshal(obj)
  31. parameter.SetJsonParamer(string(jsonBytes))
  32. return parameter
  33. }