52 lines
1.8 KiB
C#
52 lines
1.8 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
|
||
namespace TransmissionClient.Model
|
||
{
|
||
public class MulLinkConfigModel
|
||
{
|
||
/// <summary>
|
||
/// 云端多链路配置自增内码
|
||
/// </summary>
|
||
public decimal MulLinkConfig_ID { get; set; }
|
||
/// <summary>
|
||
/// 云端多链路配置关联的服务区编码
|
||
/// </summary>
|
||
public string ServerPartCode { get; set; }
|
||
/// <summary>
|
||
/// 云端多链路配置的链路地址
|
||
/// 格式:http://域名:端口、http://IP地址:端口
|
||
/// </summary>
|
||
public string InterfaceAddress { get; set; }
|
||
/// <summary>
|
||
/// 云端多链路配置关联的传输数据表标识名
|
||
/// </summary>
|
||
public string TableName { get; set; }
|
||
/// <summary>
|
||
/// 云多链路配置关联的传输数据表传输频率
|
||
/// 单位:分钟
|
||
/// </summary>
|
||
public decimal? TransFrequence { get; set; }
|
||
/// <summary>
|
||
/// 云端多链路配置关联的传输数据表历史数据天数
|
||
/// </summary>
|
||
public decimal? HistoryCallBackDays { get; set; }
|
||
/// <summary>
|
||
/// 云端多链路配置关联的传输数据表历史数据截止日期
|
||
/// 此日期后的数据全量传输
|
||
/// </summary>
|
||
public DateTime? HistoryCallBackDate { get; set; }
|
||
/// <summary>
|
||
/// 云端多链路配置关联的传输数据表历史数据传输时段起始时间
|
||
/// </summary>
|
||
public decimal? StartTime { get; set; }
|
||
/// <summary>
|
||
/// 云端多链路配置关联的传输数据表历史数据传输时段结束时间
|
||
/// </summary>
|
||
public decimal? EndTime { get; set; }
|
||
|
||
}
|
||
}
|