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.

31 lines
792 B
C#

2 years ago
using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Application.Entity
{
/// <summary>
2 years ago
/// 舱单日志
2 years ago
/// </summary>
2 years ago
[SugarTable("booking_log")]
[Description("舱单日志")]
public class BookingLog : DBEntityTenant
2 years ago
{
/// <summary>
/// 操作类型(新增,编辑)
/// </summary>
public string Type { get; set; }
/// <summary>
/// 业务id
/// </summary>
2 years ago
public long? BookingId { get; set; }
11 months ago
/// <summary>
/// 模块
/// </summary>
public string Module { get; set; } = "Order";
10 months ago
/// <summary>
/// 功能来源
/// </summary>
public string FromFunc { get; set; }
2 years ago
}
}