SealStatsInfo.go 239 B

1234567891011
  1. package common
  2. type SealStatsInfo struct {
  3. // 【印章ID】印章ID
  4. SealId string `json:"sealId"`
  5. // 【印章名称】印章名称
  6. SealName string `json:"sealName"`
  7. // 【用印次数】用印次数
  8. Count *int64 `json:"count"`
  9. }