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

30 lines
911 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CRM.Core.Model.Entity
{
[Table("module_order_upgrad")]
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; }
}
}