151 lines
3.1 KiB
C#
151 lines
3.1 KiB
C#
/** 版本信息模板在安装目录下,可自行修改。
|
|
* electricity_rate.cs
|
|
*
|
|
* 功 能: N/A
|
|
* 类 名: electricity_rate
|
|
*
|
|
* Ver 变更日期 负责人 变更内容
|
|
* ───────────────────────────────────
|
|
* V0.01 2024/8/16 13:52:17 N/A 初版
|
|
*
|
|
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
|
|
*┌──────────────────────────────────┐
|
|
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
|
|
*│ 版权所有:动软卓越(北京)科技有限公司 │
|
|
*└──────────────────────────────────┘
|
|
*/
|
|
using System;
|
|
namespace DataService.Model
|
|
{
|
|
/// <summary>
|
|
/// electricity_rate:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class electricity_rate
|
|
{
|
|
public electricity_rate()
|
|
{}
|
|
#region Model
|
|
private string _electricityid;
|
|
private int _year;
|
|
private int _month;
|
|
private string _startperiodtime;
|
|
private string _endperiodtime;
|
|
private string _type;
|
|
private decimal _unitprice;
|
|
private DateTime _createtime;
|
|
private string _reserve1;
|
|
private string _reserve2;
|
|
private string _reserve3;
|
|
private string _reserve4;
|
|
private string _reserve5;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string ElectricityId
|
|
{
|
|
set{ _electricityid=value;}
|
|
get{return _electricityid;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int Year
|
|
{
|
|
set{ _year=value;}
|
|
get{return _year;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int Month
|
|
{
|
|
set{ _month=value;}
|
|
get{return _month;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string StartPeriodTime
|
|
{
|
|
set{ _startperiodtime=value;}
|
|
get{return _startperiodtime;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string EndPeriodTime
|
|
{
|
|
set{ _endperiodtime=value;}
|
|
get{return _endperiodtime;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Type
|
|
{
|
|
set{ _type=value;}
|
|
get{return _type;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public decimal UnitPrice
|
|
{
|
|
set{ _unitprice=value;}
|
|
get{return _unitprice;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime CreateTime
|
|
{
|
|
set{ _createtime=value;}
|
|
get{return _createtime;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Reserve1
|
|
{
|
|
set{ _reserve1=value;}
|
|
get{return _reserve1;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Reserve2
|
|
{
|
|
set{ _reserve2=value;}
|
|
get{return _reserve2;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Reserve3
|
|
{
|
|
set{ _reserve3=value;}
|
|
get{return _reserve3;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Reserve4
|
|
{
|
|
set{ _reserve4=value;}
|
|
get{return _reserve4;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Reserve5
|
|
{
|
|
set{ _reserve5=value;}
|
|
get{return _reserve5;}
|
|
}
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|