12345678910111213141516171819202122 |
- namespace WingCloudServer.GeneralDocTools.Model.Doc
- {
- public class ChildrenEntity
- {
- public string is_doc { get; set; } = string.Empty;
- public int index { get; set; } = 0;
- public string local_parent_id { get; set; } = string.Empty;
- public string local_target_id { get; set; } = string.Empty;
- public string mark { get; set; } = string.Empty;
- public string method { get; set; } = string.Empty;
- public string technology { get; set; } = string.Empty;
- public string name { get; set; } = string.Empty;
- public int sort { get; set; } = 0;
- public int status { get; set; } = 0;
- public int api_level { get; set; } = 2;
- public long target_id { get; set; } = 0;
- public string target_type { get; set; } = string.Empty;
- public string update_dtime { get; set; } = string.Empty;
- public ResponseEntity response { get; set; } = new ResponseEntity();
- public RequestEntity request { get; set; } = new RequestEntity();
- }
- }
|