Execution.go 813 B

1234567891011121314151617
  1. package common
  2. type Execution struct {
  3. // 【列入严重违法失信法人单位名单(黑名单)原因】列入严重违法失信法人单位名单(黑名单)原因
  4. InReason string `json:"inReason,omitempty"`
  5. // 【列入时间】列入时间
  6. InDate string `json:"inDate,omitempty"`
  7. // 【作出决定机关(列入)】作出决定机关(列入)
  8. InDepartment string `json:"inDepartment,omitempty"`
  9. // 【移出严重违法失信法人单位名单(黑名单)原因】移出严重违法失信法人单位名单(黑名单)原因
  10. OutReason string `json:"outReason,omitempty"`
  11. // 【移出时间】移出时间
  12. OutDate string `json:"outDate,omitempty"`
  13. // 【作出决定机关(移出)】作出决定机关(移出)
  14. OutDepartment string `json:"outDepartment,omitempty"`
  15. }