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.
47 lines
1.2 KiB
C#
47 lines
1.2 KiB
C#
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using Myshipping.Core.Entity;
|
|
namespace Myshipping.Application.Entity
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarTable("bookinglog")]
|
|
[Description("舱单日志信息")]
|
|
public class BookingLog
|
|
{
|
|
/// <summary>
|
|
/// 单据ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "Id主键", IsPrimaryKey = true)]
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 操作类型(新增,编辑)
|
|
/// </summary>
|
|
public string Type { get; set; }
|
|
/// <summary>
|
|
/// 租户Id
|
|
/// </summary>
|
|
public long TenantId { get; set; }
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建者Id
|
|
/// </summary>
|
|
public long CreatedUserId { get; set; }
|
|
/// <summary>
|
|
/// 创建者名称
|
|
/// </summary>
|
|
public string CreatedUserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务id
|
|
/// </summary>
|
|
public long BookingId { get; set; }
|
|
|
|
}
|
|
} |