修改配置
parent
bc7a94381c
commit
54d88dab9e
|
@ -232,7 +232,13 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
|
|
||||||
public bool IsHaveParameters { get; set; }
|
public bool IsHaveParameters { get; set; }
|
||||||
|
|
||||||
public List<string> ParameterList { get; set; } = new List<string>();
|
public List<ParameterConfig> ParameterList { get; set; } = new List<ParameterConfig>();
|
||||||
|
|
||||||
|
public class ParameterConfig
|
||||||
|
{
|
||||||
|
public string UrlParameterName { get; set; } = String.Empty;
|
||||||
|
public string UrlParameterValueName { get; set; } = String.Empty;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public class TableConfig
|
public class TableConfig
|
||||||
|
|
Loading…
Reference in New Issue