using Datory.Annotations;
namespace GxPress.Entity.tede2.VipEquity
{
///
/// Vip权益
///
[DataTable("tede_vip_equity")]
public class VipEquity : Datory.Entity
{
///
/// IOS价格
///
///
[DataColumn]
public decimal IosPrice { get; set; }
///
/// 其他价格
///
///
[DataColumn]
public decimal OtherPrice { get; set; }
///
/// 1 月 2 季度 3 年 4连续月
///
///
[DataColumn]
public int VipType { get; set; }
}
}