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.
37 lines
839 B
C#
37 lines
839 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("g_check_order_detail_log")]
|
|
[Serializable]
|
|
public class GCheckOrderDetailLog : BaseEntity
|
|
{
|
|
[Column("ruid")]
|
|
[DisplayName(" ")]
|
|
public long Ruid { get; set; }
|
|
|
|
[Column("chk_ord_det_id")]
|
|
[DisplayName(" ")]
|
|
public long? ChkOrdDetId { get; set; }
|
|
|
|
[Column("log_type")]
|
|
[DisplayName(" ")]
|
|
public int LogType { get; set; }
|
|
|
|
[Column("log_content")]
|
|
[DisplayName(" ")]
|
|
public string LogContent { get; set; }
|
|
|
|
[Column("timesamp")]
|
|
[DisplayName(" ")]
|
|
public DateTime? Timesamp { get; set; }
|
|
|
|
|
|
}
|
|
}
|