SealStatus.go 301 B

1234567891011
  1. package common
  2. type SealStatus struct {
  3. // 【状态描述】状态描述
  4. Description string `json:"description"`
  5. // 【代指枚举的名称】代指枚举的名称
  6. Key string `json:"key"`
  7. // 【是否是无效的印章状态】是否是无效的印章状态
  8. Invalid *bool `json:"invalid"`
  9. }