You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
851 B
C#
31 lines
851 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 DSWeb.Common.DB
|
|
{
|
|
[Table("sys_op_log")]
|
|
public class SysOpLog
|
|
{
|
|
/// <summary>
|
|
/// 马士基订舱
|
|
/// </summary>
|
|
public const string CateMaerskBook = "MaerskBook";
|
|
|
|
[Key]
|
|
public string GID { get; set; }
|
|
public string CateId { get; set; }
|
|
public string OpName { get; set; }
|
|
public string RelativeId { get; set; }
|
|
public string OpUser { get; set; }
|
|
public DateTime OpTime { get; set; }
|
|
public string OpStatus { get; set; }
|
|
public string ExtData { get; set; }
|
|
public string Remark { get; set; }
|
|
}
|
|
}
|