using System; using SqlSugar; using System.ComponentModel; using Myshipping.Core.Entity; namespace Myshipping.Application.Entity { /// /// /// [SugarTable("booking_template")] [Description("订舱收发通模板")] public class BookingTemplate : DBEntityTenant { /// /// 标题 /// public string Title { get; set; } /// /// 类型 /// public string Type { get; set; } /// /// 模板内容 /// public string Content { get; set; } /// /// 备注 /// public string Remark { get; set; } } }