using DS.Module.Core.Data;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Entity
{
///
/// 业务日志明细
///
[SqlSugar.SugarTable("op_business_log_detail", "业务日志明细")]
public class OpBusinessLogDetail
{
///
/// ID
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 上级id
///
[SugarColumn(ColumnDescription = "上级id")]
public long? Pid { get; set; }
///
/// 字段
///
[SugarColumn(ColumnDescription = "字段", IsNullable = true, Length = 100)]
public string FieldValue { get; set; }
///
/// 旧值
///
[SugarColumn(ColumnDescription = "旧值", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string OldValue { get; set; }
///
/// 新值
///
[SugarColumn(ColumnDescription = "新值", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string NewValue { get; set; }
}
}