using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
[Table("Mon_PerformanceDay")]
public class Mon_PerformanceDay
{
[Key]
public int Id { get; set; }
public int orderid { get; set; }
public int oyear { get; set; }
///
/// 使用月份
///
public int omonth { get; set; }
///
/// 使用年份
///
public int daycount { get; set; }
public decimal jiazhi { get; set; }
public decimal jzcount { get; set; }
public int channel { get; set; }
//public int opendays { get; set; }
///
/// 开通月份
///
public int opmonth { get; set; }
///
/// 开通年份
///
public int opyear { get; set; }
public int type { get; set; }
public int productid { get; set; }
///
/// 到账月份
///
public int amonth { get; set; }
public decimal arrivalpay { get; set; }
public decimal curMonthRefundPrice { get; set; }
public decimal monthRefundPrice { get; set; }
public decimal firstRefundPrice { get; set; }
public int? fmonth { get; set; }
}
}