1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LYFZ.CloudServerData.Model
- {
- public class ChargeRecord
- {
- public ChargeRecord()
- {
- }
- long _ID = 0;
- /// <summary>
- /// ID
- /// </summary>
- public long ID
- {
- get { return _ID; }
- set { _ID = value; }
- }
- string _Identifier = "";
- /// <summary>
- /// 标识符
- /// </summary>
- public string Identifier
- {
- get { return _Identifier; }
- set { _Identifier = value; }
- }
- long _ServerID = 0;
- /// <summary>
- /// 服务器ID
- /// </summary>
- public long ServerID
- {
- get { return _ServerID; }
- set { _ServerID = value; }
- }
- string _EID = "";
- /// <summary>
- /// 企业ID
- /// </summary>
- public string EID
- {
- get { return _EID; }
- set { _EID = value; }
- }
- decimal _FlowDataLength = 0;
- /// <summary>
- /// 实际流量MB
- /// </summary>
- public decimal FlowDataLength
- {
- get { return _FlowDataLength; }
- set { _FlowDataLength = value; }
- }
- decimal _UserFlowDataLength = 0;
- /// <summary>
- /// 用户流量MB
- /// </summary>
- public decimal UserFlowDataLength
- {
- get { return _UserFlowDataLength; }
- set { _UserFlowDataLength = value; }
- }
- int _status = 0;
- /// <summary>
- /// 扣除状态
- /// </summary>
- public int Status
- {
- get { return _status; }
- set { _status = value; }
- }
- string _ChargeDateTime = "";
- /// <summary>
- /// 扣除时间
- /// </summary>
- public string ChargeDateTime
- {
- get { return _ChargeDateTime; }
- set { _ChargeDateTime = value; }
- }
- long _StatisticsTime = 0;
- /// <summary>
- /// 统计时间
- /// </summary>
- public long StatisticsTime
- {
- get { return _StatisticsTime; }
- set { _StatisticsTime = value; }
- }
- }
- }
|