Newer
Older
IRIS_COLLECT_GA / IOM_cs / irisDb / model / IrisDataColl.cs
yangqianqian on 1 Jun 2021 5 KB first commit
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace IOM_cs.irisDb.model
{
    public class IrisDataColl
    {
        private long IR_ID; // 主键
        private long S_ID;  // PERSON_ID,sys_person主键
        private string TEL1; // 手机号1
        private string TEL2; // 手机号2
        private string FLG_CER; // 是否携带证件,同IS_CER,但取值相反(没有用)
        private string COLL_NAME; // 采集操作人姓名
        private long COLL_ID; // 采集操作人id
        private decimal Q_L; // 左眼质量
        private decimal Q_R; // 右眼质量
        private string REASON_COLL_DESC; // 采集备注
        private string COLL_TYPE; // 采集类型,双眼、左眼、右眼
        private string COLL_REASON; // 采集原因
        private string DEF_REASON; // 缺失原因
        private string FLG_FORCE; // 是否强制采集
        private string FLG_SYNC; // 是否同步
        private string FLG_UPLOAD; // 是否已上传
        private string FLG_FOCUS; // 是否临时关注
        private DateTime FOCUS_END_DATE; // 临时关注结束日期
        private string FOCUS_REMARKS; // 临时关注备注
        private string COLL_PLACE; // 采集场地
        private string FLG_WO; // 是否工作对象
        private string COLL_WAY; // 录入方式,手动或读卡
        private string IS_CER;  // 是否携带证件
        private DateTime COLL_TIME; // 采集时间
        private string ST_NAME; // 采集站点名称
        private string ST_TYPE; // 采集站点类别
        private string DEV_TYPE; // 设备型号
        private string DEV_CODE; // 设备编号
        private string DEV_FIRM; // 设备厂商代码
        private string COLL_NUM; // 采集编号
        private string FLG_FORCE_PERSON; // 是否强制采集人员
        private string COLL_SPEND; // 采集耗时

        public string collSpend
        {
            get { return COLL_SPEND; }
            set { COLL_SPEND = value; }
        }


        public string flgForcePerson
        {
            get { return FLG_FORCE_PERSON; }
            set { FLG_FORCE_PERSON = value; }
        }

        public string collNum
        {
            get { return COLL_NUM; }
            set { COLL_NUM = value; }
        }


        public string devFirm
        {
            get { return DEV_FIRM; }
            set { DEV_FIRM = value; }
        }
        public string devCode
        {
            get { return DEV_CODE; }
            set { DEV_CODE = value; }
        }
        public string devType
        {
            get { return DEV_TYPE; }
            set { DEV_TYPE = value; }
        }
        public string stType
        {
            get { return ST_TYPE; }
            set { ST_TYPE = value; }
        }
        public string stName
        {
            get { return ST_NAME; }
            set { ST_NAME = value; }
        }
        public DateTime collTime
        {
            get { return COLL_TIME; }
            set { COLL_TIME = value; }
        }
        public string isCer
        {
            get { return IS_CER; }
            set { IS_CER = value; }
        }
        public string collWay
        {
            get { return COLL_WAY; }
            set { COLL_WAY = value; }
        }
        public long irId
        {
            get { return IR_ID; }
            set { IR_ID = value; }
        }        
        public long sId
        {
            get { return S_ID; }
            set { S_ID = value; }
        }        

        public string tel1
        {
            get { return TEL1; }
            set { TEL1 = value; }
        }        

        public string tel2
        {
            get { return TEL2; }
            set { TEL2 = value; }
        }       

        public string flgCer
        {
            get { return FLG_CER; }
            set { FLG_CER = value; }
        }        

        public string collName
        {
            get { return COLL_NAME; }
            set { COLL_NAME = value; }
        }        

        public long collId
        {
            get { return COLL_ID; }
            set { COLL_ID = value; }
        }        

        public decimal qL
        {
            get { return Q_L; }
            set { Q_L = value; }
        }        

        public decimal qR
        {
            get { return Q_R; }
            set { Q_R = value; }
        }        

        public string reasonCollDesc
        {
            get { return REASON_COLL_DESC; }
            set { REASON_COLL_DESC = value; }
        }        

        public string collType
        {
            get { return COLL_TYPE; }
            set { COLL_TYPE = value; }
        }        

        public string defReason
        {
            get { return DEF_REASON; }
            set { DEF_REASON = value; }
        }
        

        public string flgForce
        {
            get { return FLG_FORCE; }
            set { FLG_FORCE = value; }
        }
        
        public string flgSync
        {
            get { return FLG_SYNC; }
            set { FLG_SYNC = value; }
        }
       
        public string flgUpload
        {
            get { return FLG_UPLOAD; }
            set { FLG_UPLOAD = value; }
        }
   
        public string flgFocus
        {
            get { return FLG_FOCUS; }
            set { FLG_FOCUS = value; }
        }

        public DateTime focusEndDate
        {
            get { return FOCUS_END_DATE; }
            set { FOCUS_END_DATE = value; }
        }
     
        public string focusRemarks
        {
            get { return FOCUS_REMARKS; }
            set { FOCUS_REMARKS = value; }
        }

        public string collReason
        {
            get { return COLL_REASON; }
            set { COLL_REASON = value; }
        }

        public string collPlace
        {
            get { return COLL_PLACE; }
            set { COLL_PLACE = value; }
        }

        public string flgWo
        {
            get { return FLG_WO; }
            set { FLG_WO = value; }
        }
    }
}