using Admin.NET.Core;
|
|
/*
|
* @author : 您的名字
|
* @date : 2024/7/26上午7:59:59
|
* @desc : 操作履历
|
*/
|
namespace Admin.NET.Application.Entity
|
{
|
/// <summary>
|
/// 操作履历
|
/// </summary>
|
[SugarTable("wms_log_action", "操作履历")]
|
public class WmsLogAction : EntityBase
|
{
|
|
|
/// <summary>
|
/// 操作名称
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "Title", ColumnDescription = "操作名称", Length = 255)]
|
|
public string Title { get; set; }
|
|
|
/// <summary>
|
/// 操作数据ID
|
/// </summary>
|
|
[SugarColumn(ColumnName = "DbId", ColumnDescription = "操作数据ID")]
|
public long? DbId { get; set; }
|
|
|
/// <summary>
|
/// 业务类型
|
/// </summary>
|
|
[SugarColumn(ColumnName = "BusinessType", ColumnDescription = "业务类型")]
|
public BusinessTypeEnum? BusinessType { get; set; }
|
|
|
/// <summary>
|
/// 业务类型名称
|
/// </summary>
|
[SugarColumn(ColumnName = "BusinessTypeName", ColumnDescription = "业务类型名称", Length = 50)]
|
|
public string? BusinessTypeName { get; set; }
|
|
|
/// <summary>
|
/// 关键字1
|
/// </summary>
|
[SugarColumn(ColumnName = "KeyWord1", ColumnDescription = "关键字1", Length = 255)]
|
|
public string? KeyWord1 { get; set; }
|
|
|
/// <summary>
|
/// 关键字2
|
/// </summary>
|
[SugarColumn(ColumnName = "KeyWord2", ColumnDescription = "关键字2", Length = 255)]
|
|
public string? KeyWord2 { get; set; }
|
|
|
/// <summary>
|
/// 关键字3
|
/// </summary>
|
[SugarColumn(ColumnName = "KeyWord3", ColumnDescription = "关键字3", Length = 255)]
|
|
public string? KeyWord3 { get; set; }
|
|
|
/// <summary>
|
/// 备注
|
/// </summary>
|
[SugarColumn(ColumnName = "Remarks", ColumnDescription = "备注", Length = 255)]
|
|
public string? Remarks { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
}
|