using System; using System.Collections.Generic; using System.Text; [Serializable] public class BillCode { private string _ruleid; private string _entid; private string _orgid; private int _frec; private int _recnum; private int _retentiontime; private string _stationcode; public BillCode() { } public string RULEID { get { return _ruleid; } set { _ruleid = value; } } public string ENTID { get { return _entid; } set { _entid = value; } } public string ORGID { get { return _orgid; } set { _orgid = value; } } public int FREC { get { return _frec; } set { _frec = value; } } public int RECNUM { get { return _recnum; } set { _recnum = value; } } public int RETENTIONTIME { get { return _retentiontime; } set { _retentiontime = value; } } public string STATIONCODE { get { return _stationcode; } set { _stationcode = value; } } }