|
|
@@ -174,6 +174,21 @@ namespace Model
|
|
|
}
|
|
|
}
|
|
|
[SugarColumn(IsIgnore = true)]
|
|
|
+ public int apiResParamCount
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ if (apiParam != null)
|
|
|
+ {
|
|
|
+ return apiParam.Count(m => m.resParam);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ [SugarColumn(IsIgnore = true)]
|
|
|
public string? apiParamFirstParam
|
|
|
{
|
|
|
get
|
|
|
@@ -189,6 +204,22 @@ namespace Model
|
|
|
}
|
|
|
}
|
|
|
[SugarColumn(IsIgnore = true)]
|
|
|
+ public string? apiParamFirstParamUpper
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return PublicFunction.transferName(apiParamFirstParam);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ [SugarColumn(IsIgnore = true)]
|
|
|
+ public string? apiParamFirstParamFirstUpper
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return PublicFunction.transferName(apiParamFirstParam, 1);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ [SugarColumn(IsIgnore = true)]
|
|
|
public string? apiParamFirstParamType
|
|
|
{
|
|
|
get
|