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.
60 lines
1.4 KiB
C#
60 lines
1.4 KiB
C#
1 year ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using SOA.Persistent;
|
||
|
|
||
|
namespace IBKLinker_Minio.Entity.MinioController
|
||
|
{
|
||
|
/// <summary>
|
||
|
///操作日志
|
||
|
/// </summary>
|
||
|
[Serializable, Table("MINIO_OPERATIONLOG")]
|
||
|
public class MinioOperationlog
|
||
|
{
|
||
|
/// <summary>
|
||
|
///主键
|
||
|
/// </summary>
|
||
|
[Persistent("PK", IsKey =true), DisplayName("主键")]
|
||
|
public int Pk { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
///操作者
|
||
|
/// </summary>
|
||
|
[Persistent("OPERATE_USER"), DisplayName("操作者")]
|
||
|
public string OperateUser { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
///操作时间
|
||
|
/// </summary>
|
||
|
[Persistent("OPERATE_TIME"), DisplayName("操作时间")]
|
||
|
public DateTime? OperateTime { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
///操作
|
||
|
/// </summary>
|
||
|
[Persistent("OPERATE"), DisplayName("操作")]
|
||
|
public string Operater { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
///创建时间
|
||
|
/// </summary>
|
||
|
[Persistent("CREATION_TIME"), DisplayName("创建时间")]
|
||
|
public DateTime? CreationTime { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
///备用字段
|
||
|
/// </summary>
|
||
|
[Persistent("ALTERNATE_FIELDS"), DisplayName("备用字段")]
|
||
|
public string AlternateFilelds { get; set; }
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|