| 1234567891011121314151617 |
- package common
- type Execution struct {
- // 【列入严重违法失信法人单位名单(黑名单)原因】列入严重违法失信法人单位名单(黑名单)原因
- InReason string `json:"inReason,omitempty"`
- // 【列入时间】列入时间
- InDate string `json:"inDate,omitempty"`
- // 【作出决定机关(列入)】作出决定机关(列入)
- InDepartment string `json:"inDepartment,omitempty"`
- // 【移出严重违法失信法人单位名单(黑名单)原因】移出严重违法失信法人单位名单(黑名单)原因
- OutReason string `json:"outReason,omitempty"`
- // 【移出时间】移出时间
- OutDate string `json:"outDate,omitempty"`
- // 【作出决定机关(移出)】作出决定机关(移出)
- OutDepartment string `json:"outDepartment,omitempty"`
- }
|