ComplianceServer/oldcode/Core.Model/Entity/Mon_OrderRefund.cs

31 lines
1.0 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
public class Mon_OrderRefund
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public long id { get; set; }
public DateTime month { get; set; }
public int orderid { get; set; }
public decimal refundprice { get; set; }
public string account { get; set; }
public string username { get; set; }
public int refundtype { get; set; }
public string refundtypename { get; set; }
public DateTime? refunddate { get; set; }
public string remark { get; set; }
public string att { 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 att2 { get; set; }
public string companycode { get; set; }
}
}