/** 版本信息模板在安装目录下,可自行修改。 * app_power_plan.cs * * 功 能: N/A * 类 名: app_power_plan * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── * V0.01 2024/11/14 14:52:46 N/A 初版 * * Copyright (c) 2012 Maticsoft Corporation. All rights reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 版权所有:动软卓越(北京)科技有限公司              │ *└──────────────────────────────────┘ */ using System; namespace Competition.Mysql.Model { /// /// app_power_plan:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class app_power_plan { public app_power_plan() {} #region Model private string _id; private string _client_id; private string _power_nature; private string _power_type; private string _power_capacity; private string _power_voltage; private string _in_line_type; private string _power_phase; private string _protect_type; private string _relay_protect_type; private string _property_split; private string _in_line_no; private string _power_remark; private string _station_info; 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 power_nature { set{ _power_nature=value;} get{return _power_nature;} } /// /// /// public string power_type { set{ _power_type=value;} get{return _power_type;} } /// /// /// public string power_capacity { set{ _power_capacity=value;} get{return _power_capacity;} } /// /// /// public string power_voltage { set{ _power_voltage=value;} get{return _power_voltage;} } /// /// /// public string in_line_type { set{ _in_line_type=value;} get{return _in_line_type;} } /// /// /// public string power_phase { set{ _power_phase=value;} get{return _power_phase;} } /// /// /// public string protect_type { set{ _protect_type=value;} get{return _protect_type;} } /// /// /// public string relay_protect_type { set{ _relay_protect_type=value;} get{return _relay_protect_type;} } /// /// /// public string property_split { set{ _property_split=value;} get{return _property_split;} } /// /// /// public string in_line_no { set{ _in_line_no=value;} get{return _in_line_no;} } /// /// /// public string power_remark { set{ _power_remark=value;} get{return _power_remark;} } /// /// /// public string station_info { set{ _station_info=value;} get{return _station_info;} } /// /// /// 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 } }