/** 版本信息模板在安装目录下,可自行修改。 * app_client_collect.cs * * 功 能: N/A * 类 名: app_client_collect * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── * V0.01 2024/11/27 17:12:17 N/A 初版 * * Copyright (c) 2012 Maticsoft Corporation. All rights reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 版权所有:动软卓越(北京)科技有限公司              │ *└──────────────────────────────────┘ */ using System; namespace Competition.Mysql.Model { /// /// app_client_collect:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class app_client_collect { public app_client_collect() {} #region Model private string _id; private string _user_name; private string _id_card; private string _business_photo; private string _house_photo; private string _sfz_front; private string _sfz_back; private string _user_type; private string _zj1; private string _zj2; private string _hangye_type; private string _power_voltage; private string _power_type; private string _power_unit; private string _city_type; private string _move_flag; private string _load_type; private string _is_town_range; private string _is_fee_control; private string _remark; private DateTime? _create_time; private string _is_high_energy; private string _marketization_attribute; private string _temporary_electricity_sign; private string _is_enterprise; private string _is_surrogate_telegram; private string _is_coal_user; private string _is_delisted_subscriber; private string _apply_book; private string _operator_idcard; private string _r1; private string _r2; private string _r3; /// /// /// public string id { set{ _id=value;} get{return _id;} } /// /// /// public string user_name { set{ _user_name=value;} get{return _user_name;} } /// /// /// public string id_card { set{ _id_card=value;} get{return _id_card;} } /// /// /// public string business_photo { set{ _business_photo=value;} get{return _business_photo;} } /// /// /// public string house_photo { set{ _house_photo=value;} get{return _house_photo;} } /// /// /// public string sfz_front { set{ _sfz_front=value;} get{return _sfz_front;} } /// /// /// public string sfz_back { set{ _sfz_back=value;} get{return _sfz_back;} } /// /// /// public string user_type { set{ _user_type=value;} get{return _user_type;} } /// /// /// public string zj1 { set{ _zj1=value;} get{return _zj1;} } /// /// /// public string zj2 { set{ _zj2=value;} get{return _zj2;} } /// /// /// public string hangye_type { set{ _hangye_type=value;} get{return _hangye_type;} } /// /// /// public string power_voltage { set{ _power_voltage=value;} get{return _power_voltage;} } /// /// /// public string power_type { set{ _power_type=value;} get{return _power_type;} } /// /// /// public string power_unit { set{ _power_unit=value;} get{return _power_unit;} } /// /// /// public string city_type { set{ _city_type=value;} get{return _city_type;} } /// /// /// public string move_flag { set{ _move_flag=value;} get{return _move_flag;} } /// /// /// public string load_type { set{ _load_type=value;} get{return _load_type;} } /// /// /// public string is_town_range { set{ _is_town_range=value;} get{return _is_town_range;} } /// /// /// public string is_fee_control { set{ _is_fee_control=value;} get{return _is_fee_control;} } /// /// /// public string remark { set{ _remark=value;} get{return _remark;} } /// /// /// public DateTime? create_time { set{ _create_time=value;} get{return _create_time;} } /// /// /// public string is_high_energy { set{ _is_high_energy=value;} get{return _is_high_energy;} } /// /// /// public string marketization_attribute { set{ _marketization_attribute=value;} get{return _marketization_attribute;} } /// /// /// public string temporary_electricity_sign { set{ _temporary_electricity_sign=value;} get{return _temporary_electricity_sign;} } /// /// /// public string is_enterprise { set{ _is_enterprise=value;} get{return _is_enterprise;} } /// /// /// public string is_surrogate_telegram { set{ _is_surrogate_telegram=value;} get{return _is_surrogate_telegram;} } /// /// /// public string is_coal_user { set{ _is_coal_user=value;} get{return _is_coal_user;} } /// /// /// public string is_delisted_subscriber { set{ _is_delisted_subscriber=value;} get{return _is_delisted_subscriber;} } /// /// /// public string apply_book { set{ _apply_book=value;} get{return _apply_book;} } /// /// /// public string operator_idcard { set{ _operator_idcard=value;} get{return _operator_idcard;} } /// /// /// public string r1 { set{ _r1=value;} get{return _r1;} } /// /// /// public string r2 { set{ _r2=value;} get{return _r2;} } /// /// /// public string r3 { set{ _r3=value;} get{return _r3;} } #endregion Model } }