ChildrenEntity.cs 1.0 KB

12345678910111213141516171819202122
  1. namespace WingCloudServer.GeneralDocTools.Model.Doc
  2. {
  3. public class ChildrenEntity
  4. {
  5. public string is_doc { get; set; } = string.Empty;
  6. public int index { get; set; } = 0;
  7. public string local_parent_id { get; set; } = string.Empty;
  8. public string local_target_id { get; set; } = string.Empty;
  9. public string mark { get; set; } = string.Empty;
  10. public string method { get; set; } = string.Empty;
  11. public string technology { get; set; } = string.Empty;
  12. public string name { get; set; } = string.Empty;
  13. public int sort { get; set; } = 0;
  14. public int status { get; set; } = 0;
  15. public int api_level { get; set; } = 2;
  16. public long target_id { get; set; } = 0;
  17. public string target_type { get; set; } = string.Empty;
  18. public string update_dtime { get; set; } = string.Empty;
  19. public ResponseEntity response { get; set; } = new ResponseEntity();
  20. public RequestEntity request { get; set; } = new RequestEntity();
  21. }
  22. }