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.
79 lines
1.9 KiB
C#
79 lines
1.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Newtonsoft.Json;
|
|
using SOA.Persistent;
|
|
|
|
namespace IBKLinker_Minio.Entity.MinioController
|
|
{
|
|
/// <summary>
|
|
///操作日志
|
|
/// </summary>
|
|
[Serializable, Table("MINIO_OPERATIONLOG"), JsonObject]
|
|
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; }
|
|
|
|
/// <summary>
|
|
///文件pk
|
|
/// </summary>
|
|
[Persistent("FILE_PK", IsKey = true), DisplayName("主键")]
|
|
public string FilePk { get; set; }
|
|
|
|
/// <summary>
|
|
///文件父级pk
|
|
/// </summary>
|
|
[Persistent("FILE_UPK", IsKey = true), DisplayName("主键")]
|
|
public string FileUPk { get; set; }
|
|
|
|
/// <summary>
|
|
///文件名
|
|
/// </summary>
|
|
[Persistent("FILE_NAME"), DisplayName("文件名")]
|
|
public string FileName { get; set; }
|
|
|
|
|
|
}
|
|
}
|