You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.7 KiB
66 lines
1.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace X1.DynamicClientCore.Models
|
|
{
|
|
/// <summary>
|
|
/// 蜂窝网络配置实体
|
|
/// </summary>
|
|
public class CellularNetworkConfiguration
|
|
{
|
|
/// <summary>
|
|
/// 设备代码
|
|
/// </summary>
|
|
[Required(ErrorMessage = "设备代码不能为空")]
|
|
public string DeviceCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 运行时代码
|
|
/// </summary>
|
|
[Required(ErrorMessage = "运行时代码不能为空")]
|
|
public string RuntimeCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 无线接入网配置
|
|
/// </summary>
|
|
public string RadioAccessNetworkConfiguration { get; set; }
|
|
|
|
/// <summary>
|
|
/// 核心网IMS配置集合
|
|
/// </summary>
|
|
public List<CoreNetworkImsConfiguration> CoreNetworkImsConfigurations { get; set; } = new List<CoreNetworkImsConfiguration>();
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 核心网IMS配置对象
|
|
/// </summary>
|
|
public class CoreNetworkImsConfiguration
|
|
{
|
|
/// <summary>
|
|
/// 索引
|
|
/// </summary>
|
|
public int Index { get; set; }
|
|
|
|
/// <summary>
|
|
/// PLMN标识
|
|
/// </summary>
|
|
[Required(ErrorMessage = "PLMN标识不能为空")]
|
|
public string Plmn { get; set; }
|
|
|
|
/// <summary>
|
|
/// 核心网配置
|
|
/// </summary>
|
|
public string CoreNetworkConfiguration { get; set; }
|
|
|
|
/// <summary>
|
|
/// IMS服务配置
|
|
/// </summary>
|
|
public string ImsServiceConfiguration { get; set; }
|
|
|
|
}
|
|
}
|
|
|