| 1234567891011121314151617 |
- package response
- type GetLogCodingReply struct {
- Id uint `json:"id"`
- ParentId uint `json:"parent_id"`
- Coding int `json:"coding"`
- Describe string `json:"describe"`
- Level int `json:"level"`
- CreateTime string `json:"create_time"` // 创建时间
- UpdateTime string `json:"update_time"` // 更新时间
- }
- type GetCodeListReply struct {
- GetLogCodingReply
- Children []*GetCodeListReply `json:"children"`
- }
|