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.
27 lines
677 B
C#
27 lines
677 B
C#
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using Myshipping.Core.Entity;
|
|
namespace Myshipping.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 舱单日志
|
|
/// </summary>
|
|
[SugarTable("booking_log")]
|
|
[Description("舱单日志")]
|
|
public class BookingLog : DBEntityTenant
|
|
{
|
|
/// <summary>
|
|
/// 操作类型(新增,编辑)
|
|
/// </summary>
|
|
public string Type { get; set; }
|
|
/// <summary>
|
|
/// 业务id
|
|
/// </summary>
|
|
public long? BookingId { get; set; }
|
|
/// <summary>
|
|
/// 模块
|
|
/// </summary>
|
|
public string Module { get; set; } = "Order";
|
|
}
|
|
} |