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.
|
|
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace ICSSoft.Entity { /// <summary>
/// 齐套验证接收实体类
/// </summary>
public class CompleteVerification { /// <summary>
/// 参数编码
/// </summary>
public string Code { get; set; } /// <summary>
/// 参数名称
/// </summary>
public string Name { get; set; } /// <summary>
/// 是否启用(0表示未启用,1表示启用)
/// </summary>
public string Enable { get; set; } /// <summary>
/// 站点
/// </summary>
public string WorkPoint { get; set; } } }
|