25 lines
765 B
C#
25 lines
765 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CRM.Core.Model.EntityAudit
|
|
{
|
|
public class Module_Order_Upgrad
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public string new_resid { get; set; }
|
|
public string new_username { get; set; }
|
|
public int new_orderid { get; set; }
|
|
public long? new_szzyorderid { get; set; }
|
|
public DateTime? new_otime { get; set; }
|
|
public string old_resid { get; set; }
|
|
public string old_username { get; set; }
|
|
public int old_orderid { get; set; }
|
|
public long? old_szzyorderid { get; set; }
|
|
public DateTime? old_otime { get; set; }
|
|
public int isbeclose { get; set; }
|
|
public int type { get; set; }
|
|
|
|
}
|
|
}
|