| 123456789101112131415 |
- package common
- type AbnormalItem struct {
- // 【列入经营异常原因】列入经营异常原因
- InReason string `json:"inReason,omitempty"`
- // 【列入时间】列入时间
- InDate string `json:"inDate,omitempty"`
- // 【移出经营异常原因】移出经营异常原因
- OutReason string `json:"outReason,omitempty"`
- // 【移出时间】移出时间
- OutDate string `json:"outDate,omitempty"`
- // 【做出决定的部门】做出决定的部门
- Department string `json:"department,omitempty"`
- }
|