| 123456789101112131415161718192021 |
- package common
- type AdminPunishment struct {
- // 【序号】序号
- SeqNo string `json:"seq_no,omitempty"`
- // 【决定书文号】决定书文号
- Number string `json:"number,omitempty"`
- // 【违法行为类型】违法行为类型
- IllegalType string `json:"illegalType,omitempty"`
- // 【行政处罚内容】行政处罚内容
- Content string `json:"content,omitempty"`
- // 【决定机关名称】决定机关名称
- Department string `json:"department,omitempty"`
- // 【处罚决定日期】处罚决定日期
- Date string `json:"date,omitempty"`
- // 【公示日期】公示日期
- PublishDate string `json:"publishDate,omitempty"`
- // 【详情】详情
- Description string `json:"description,omitempty"`
- }
|