using System; using System.ComponentModel.DataAnnotations; namespace CRM.Core.Model.Entity { public class Mon_OrderPay { [Key] public int id { get; set; } public DateTime month { get; set; } public int orderid { get; set; } public decimal needpay { get; set; } public int paytype { get; set; } public string paytypename { get; set; } public DateTime paydate { get; set; } public decimal payprice { get; set; } public string payname { get; set; } public string remark { get; set; } public int auditstatus { get; set; } public int? auditor { get; set; } public string auditorname { get; set; } public DateTime? audittime { get; set; } public DateTime ctime { get; set; } public string payno { get; set; } public string companycode { get; set; } } }