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; } } /// /// 收发通模板分享 /// [SugarTable("booking_template_share")] [Description("收发通模板分享")] public class BookingTemplateShare : DBEntityTenant { /// /// 模板ID /// public long TemplateId { get; set; } /// /// 分享用户Id /// public long ShareToId { get; set; } /// /// 分享用户 /// public string ShareToName { get; set; } /// /// 备注 /// public string Remark { get; set; } } }