/** 版本信息模板在安装目录下,可自行修改。 * app_measure_point.cs * * 功 能: N/A * 类 名: app_measure_point * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── * V0.01 2024/11/20 9:29:35 N/A 初版 * * Copyright (c) 2012 Maticsoft Corporation. All rights reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 版权所有:动软卓越(北京)科技有限公司              │ *└──────────────────────────────────┘ */ using System; namespace Competition.Mysql.Model { /// /// app_measure_point:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class app_measure_point { public app_measure_point() {} #region Model private string _id; private string _client_id; private string _measure_name; private string _measure_capacity; private string _measure_way; private string _is_fill_meter; private string _measure_info; private string _power_factor_type; private string _voltage_level; private string _inline_type; private string _is_stop_power; private string _main_use; private string _measure_type; private string _measure_nature; private string _device_type; private string _own_side; private string _shop_attrtype; private string _agent_price; private string _station_info; private string _price_calc_way; private string _power_factor_stand; private string _rate_reduce_flag; private string _rate_value; private string _exec_order; private string _is_peak_flag; private string _fee_hangye_type; private string _exec_price; private DateTime? _create_time; private string _r1; private string _r2; private string _r3; /// /// /// public string id { set{ _id=value;} get{return _id;} } /// /// /// public string client_id { set{ _client_id=value;} get{return _client_id;} } /// /// /// public string measure_name { set{ _measure_name=value;} get{return _measure_name;} } /// /// /// public string measure_capacity { set{ _measure_capacity=value;} get{return _measure_capacity;} } /// /// /// public string measure_way { set{ _measure_way=value;} get{return _measure_way;} } /// /// /// public string is_fill_meter { set{ _is_fill_meter=value;} get{return _is_fill_meter;} } /// /// /// public string measure_info { set{ _measure_info=value;} get{return _measure_info;} } /// /// /// public string power_factor_type { set{ _power_factor_type=value;} get{return _power_factor_type;} } /// /// /// public string voltage_level { set{ _voltage_level=value;} get{return _voltage_level;} } /// /// /// public string inline_type { set{ _inline_type=value;} get{return _inline_type;} } /// /// /// public string is_stop_power { set{ _is_stop_power=value;} get{return _is_stop_power;} } /// /// /// public string main_use { set{ _main_use=value;} get{return _main_use;} } /// /// /// public string measure_type { set{ _measure_type=value;} get{return _measure_type;} } /// /// /// public string measure_nature { set{ _measure_nature=value;} get{return _measure_nature;} } /// /// /// public string device_type { set{ _device_type=value;} get{return _device_type;} } /// /// /// public string own_side { set{ _own_side=value;} get{return _own_side;} } /// /// /// public string shop_attrtype { set{ _shop_attrtype=value;} get{return _shop_attrtype;} } /// /// /// public string agent_price { set{ _agent_price=value;} get{return _agent_price;} } /// /// /// public string station_info { set{ _station_info=value;} get{return _station_info;} } /// /// /// public string price_calc_way { set{ _price_calc_way=value;} get{return _price_calc_way;} } /// /// /// public string power_factor_stand { set{ _power_factor_stand=value;} get{return _power_factor_stand;} } /// /// /// public string rate_reduce_flag { set{ _rate_reduce_flag=value;} get{return _rate_reduce_flag;} } /// /// /// public string rate_value { set{ _rate_value=value;} get{return _rate_value;} } /// /// /// public string exec_order { set{ _exec_order=value;} get{return _exec_order;} } /// /// /// public string is_peak_flag { set{ _is_peak_flag=value;} get{return _is_peak_flag;} } /// /// /// public string fee_hangye_type { set{ _fee_hangye_type=value;} get{return _fee_hangye_type;} } /// /// /// public string exec_price { set{ _exec_price=value;} get{return _exec_price;} } /// /// /// public DateTime? create_time { set{ _create_time=value;} get{return _create_time;} } /// /// /// 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 } }