using FreeSql.DataAnnotations; namespace BBWY.Server.Model.Db.Mds { /// /// 店铺与团关系 /// [Table(Name = "shopdepartment", DisableSyncStructure = true)] public partial class Shopdepartment { [Column(StringLength = 50, IsPrimary = true, IsNullable = false)] public string Id { get; set; } /// /// 团队ID /// [Column(StringLength = 50)] public string DepartmentId { get; set; } /// /// 店铺ID /// [ Column(StringLength = 50)] public string ShopId { get; set; } } }