2025-03-28 09:49:56 +08:00

52 lines
1.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}