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.

23 lines
559 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; }
2 years ago
}
}