123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- using System.Collections.Generic;
- namespace WingCloudServer.GeneralDocTools.Model
- {
-
-
-
- public class MemberEntity
- {
-
-
-
- public string ParamName { get; set; } = string.Empty;
-
-
-
- public string Summary { get; set; } = string.Empty;
-
-
-
- public string Value { get; set; } = string.Empty;
-
-
-
- public List<ParamEntity> Param { get; set; } = new List<ParamEntity>();
-
-
-
- public string Returns { get; set; } = string.Empty;
-
-
-
- public string Remarks { get; set; } = string.Empty;
-
-
-
- public string Code { get; set; } = "1";
-
-
-
- public string DocFirstDirectory { get; set; } = "";
-
-
-
- public string DocSecondDirectory { get; set; } = "";
-
-
-
- public string DocThirdDirectory { get; set; } = "";
-
-
-
- public string EnumDocFirstDirectory { get; set; } = "";
-
-
-
- public string NotificationDocFirstDirectory { get; set; } = "";
-
-
-
- public string NotificationDocSecondDirectory { get; set; } = "";
-
-
-
- public string NotificationDocThirdDirectory { get; set; } = "";
-
-
-
- public string ErrorCodes { get; set; } = "";
-
-
-
- public bool Show { get; set; } = true;
- }
-
-
-
- public class ParamEntity
- {
-
-
-
- public string ParamName { get; set; } = string.Empty;
-
-
-
- public string ParamText { get; set; } = string.Empty;
- }
-
-
-
- public class QueryMethodMemberEntity
- {
-
-
-
- public string DocFirstDirectory { get; set; } = "";
-
-
-
- public string DocSecondDirectory { get; set; } = "";
-
-
-
- public string DocThirdDirectory { get; set; } = "";
-
-
-
- public string NotificationDocFirstDirectory { get; set; } = "";
-
-
-
- public string NotificationDocSecondDirectory { get; set; } = "";
-
-
-
- public string NotificationDocThirdDirectory { get; set; } = "";
- public int DirectoryType { get; set; } = 2;
-
-
-
- public MemberEntity MethodInfo { get; set; } = new MemberEntity();
-
-
-
- public Type InterfaceType { get; set; }
-
-
-
- public InterfaceBasicInfoEntity InterfaceEntity { get; set; } = new InterfaceBasicInfoEntity();
- }
- public class BaseEntity
- {
-
-
-
- public string Key { get; set; } = "";
-
-
-
- public string Value { get; set; } = "";
- }
- }
|