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

19 lines
544 B
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace CRM.Core.Model.Entity
{
public class Bas_ActLog
{
[Key]
public int Id { get; set; }
public int ActType { get; set; }
public string ActTypeName { get; set; }
public int Operaor { get; set; }
public string OperatorName { get; set; }
public int Status { get; set; }
public DateTime OperationTime { get; set; }
public string Remark { get; set; }
public int? OrderId { get; set; }
}
}