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
539 B
C#
23 lines
539 B
C#
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using Myshipping.Core.Entity;
|
|
namespace Myshipping.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 订舱备注
|
|
/// </summary>
|
|
[SugarTable("booking_remark")]
|
|
[Description("订舱备注")]
|
|
public class BookingRemark : DBEntityTenant
|
|
{
|
|
/// <summary>
|
|
/// 业务id
|
|
/// </summary>
|
|
public long PId { get; set; }
|
|
/// <summary>
|
|
/// 订舱备注
|
|
/// </summary>
|
|
public string Remark { get; set; }
|
|
}
|
|
} |