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