using System; namespace Mtxfw.Model { /// /// city:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class user_zzjf { #region Model private int _id; private Decimal _zznum;//增值资金 private Decimal _zzjg;//增值价格 private Decimal _zzjf;//增值积分 private int _gtype; /// /// /// public int id { set { _id = value; } get { return _id; } } /// /// /// public Decimal zznum { set { _zznum = value; } get { return _zznum; } } /// /// /// public Decimal zzjg { set { _zzjg = value; } get { return _zzjg; } } /// /// /// public Decimal zzjf { set { _zzjf = value; } get { return _zzjf; } } /// /// /// public int gtype { set { _gtype = value; } get { return _gtype; } } #endregion Model } }