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.
74 lines
2.2 KiB
C#
74 lines
2.2 KiB
C#
using DS.WMS.Core.TaskInteraction.Entity;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.Op.Entity
|
|
{
|
|
/// <summary>
|
|
/// 提单管理日志表
|
|
/// </summary>
|
|
[SugarTable("op_bl_issue_log", "提单管理日志表")]
|
|
public class BLIssueManageLog
|
|
{
|
|
/// <summary>
|
|
/// ID
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true), IgnoreDataMember]
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "提单管理主键", IsNullable = true)]
|
|
public long Pid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 动作类型
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "动作类型", Length = 20, IsNullable = true)]
|
|
public string ActionCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 动作类型名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "动作类型名称", Length = 50, IsNullable = true)]
|
|
public string ActionName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "创建人", IsNullable = true)]
|
|
public long CreateBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "创建人名称", Length = 50, IsNullable = true)]
|
|
public string CreateUserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "创建时间", IsNullable = false)]
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结果
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "结果", Length = 50, IsNullable = false)]
|
|
public string Result { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "备注", Length = 500)]
|
|
public string Note { get; set; }
|
|
}
|
|
}
|