using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IrisCtrl.Json { class ResultParam { private string flgResult;//返回代码 private string ir_id;//虹膜图片ID private string hmzp_zy;//左眼虹膜图片base64i编码 private string hmzp_yy;//右眼虹膜图片BASE64编码 private string cjtphs;//采集图片耗时 private string sbxh;//设备型号 private string sbbh;//设备编号 private string zy_xxzlpf;//左眼图像质量评分 private string yy_xxzlpf;//右眼图像质量评分 private string sbcsdm;//设备厂商信用代码 public string FlgResult { get { return flgResult; } set { flgResult = value; } } public string Ir_id { get { return ir_id; } set { ir_id = value; } } public string Hmzp_zy { get { return hmzp_zy; } set { hmzp_zy = value; } } public string Hmzp_yy { get { return hmzp_yy; } set { hmzp_yy = value; } } public string Cjtphs { get { return cjtphs; } set { cjtphs = value; } } public string Sbxh { get { return sbxh; } set { sbxh = value; } } public string Sbbh { get { return sbbh; } set { sbbh = value; } } public string Zy_xxzlpf { get { return zy_xxzlpf; } set { zy_xxzlpf = value; } } public string Yy_xxzlpf { get { return yy_xxzlpf; } set { yy_xxzlpf = value; } } public string Sbcsdm { get { return sbcsdm; } set { sbcsdm = value; } } public static ResultParam GetResultParam() { ResultParam resultParam = new ResultParam(); resultParam.FlgResult = "返回代码"; resultParam.Ir_id = "虹膜图片ID"; resultParam.Hmzp_zy = "左眼虹膜图片base64i编码"; resultParam.Hmzp_yy = "右眼虹膜图片BASE64编码"; resultParam.Cjtphs = "采集图片耗时"; resultParam.Sbxh = "设备型号"; resultParam.Sbbh = "设备编号"; resultParam.Zy_xxzlpf = "左眼图像质量评分"; resultParam.Yy_xxzlpf = "右眼图像质量评分"; resultParam.Sbcsdm = "设备厂商信用代码"; return resultParam; } } }