47 lines
1.4 KiB
C#
47 lines
1.4 KiB
C#
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; }
|
|
/// <summary>
|
|
/// 使用月份
|
|
/// </summary>
|
|
public int omonth { get; set; }
|
|
/// <summary>
|
|
/// 使用年份
|
|
/// </summary>
|
|
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; }
|
|
/// <summary>
|
|
/// 开通月份
|
|
/// </summary>
|
|
public int opmonth { get; set; }
|
|
/// <summary>
|
|
/// 开通年份
|
|
/// </summary>
|
|
public int opyear { get; set; }
|
|
public int type { get; set; }
|
|
public int productid { get; set; }
|
|
/// <summary>
|
|
/// 到账月份
|
|
/// </summary>
|
|
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; }
|
|
|
|
}
|
|
}
|