2023-03-02 14:24:34 +08:00
|
|
|
|
namespace Repository.Models
|
|
|
|
|
{
|
|
|
|
|
public class BackEndConfig
|
|
|
|
|
{
|
|
|
|
|
public NiagaraDataSyncConfig NiagaraDataSyncConfig { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class NiagaraDataSyncConfig
|
|
|
|
|
{
|
|
|
|
|
public string UrlSlot { get; set; }
|
|
|
|
|
public string ObixQuery { get; set; }
|
|
|
|
|
public string ObixHisBqlQuery { get; set; }
|
|
|
|
|
public string ObixHisUrlQuery { get; set; }
|
2023-04-11 10:28:33 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// tag 段數
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string tag_quantity { get; set; }
|
2023-04-21 17:40:18 +08:00
|
|
|
|
public string Account { get; set; }
|
|
|
|
|
public string Password { get; set; }
|
2023-03-02 14:24:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|