using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { [Table("Mon_DzOrder2Day")] public class Mon_DzOrder2Day { [Key] public int Id { get; set; } public decimal? orderid { get; set; } public DateTime paytime { get; set; } public int paymonth { get; set; } public decimal payprice { get; set; } public int productid { get; set; } public string payno { get; set; } public DateTime? otime { get; set; } public int? omonth { get; set; } public string orderstatus { get; set; } public DateTime? ftime { get; set; } public int? fmonth { get; set; } public int? isuse { get; set; } public DateTime? atime { get; set; } public int? amonth { get; set; } public DateTime? ntime { get; set; } public int? nmonth { get; set; } public int paytype { get; set; } public int channel { get; set; } } }