log_coding.go 440 B

1234567891011121314151617
  1. package response
  2. type GetLogCodingReply struct {
  3. Id uint `json:"id"`
  4. ParentId uint `json:"parent_id"`
  5. Coding int `json:"coding"`
  6. Describe string `json:"describe"`
  7. Level int `json:"level"`
  8. CreateTime string `json:"create_time"` // 创建时间
  9. UpdateTime string `json:"update_time"` // 更新时间
  10. }
  11. type GetCodeListReply struct {
  12. GetLogCodingReply
  13. Children []*GetCodeListReply `json:"children"`
  14. }