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; } /// /// 名称 /// public string NAME { get; set; } /// /// 地址 /// public string ADDR { get; set; } /// /// 国家code /// public string COUNTRY { get; set; } /// /// 国家 /// public string COUNTRYName { get; set; } /// /// 发货人电话 /// public string TEL { get; set; } } }