AdminPunishment.go 722 B

123456789101112131415161718192021
  1. package common
  2. type AdminPunishment struct {
  3. // 【序号】序号
  4. SeqNo string `json:"seq_no,omitempty"`
  5. // 【决定书文号】决定书文号
  6. Number string `json:"number,omitempty"`
  7. // 【违法行为类型】违法行为类型
  8. IllegalType string `json:"illegalType,omitempty"`
  9. // 【行政处罚内容】行政处罚内容
  10. Content string `json:"content,omitempty"`
  11. // 【决定机关名称】决定机关名称
  12. Department string `json:"department,omitempty"`
  13. // 【处罚决定日期】处罚决定日期
  14. Date string `json:"date,omitempty"`
  15. // 【公示日期】公示日期
  16. PublishDate string `json:"publishDate,omitempty"`
  17. // 【详情】详情
  18. Description string `json:"description,omitempty"`
  19. }