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