You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
587 B
29 lines
587 B
using FreeSql.DataAnnotations;
|
|
|
|
namespace BBWY.Server.Model.Db.Mds
|
|
{
|
|
|
|
/// <summary>
|
|
/// 店铺与团关系
|
|
/// </summary>
|
|
[Table(Name = "shopdepartment", DisableSyncStructure = true)]
|
|
public partial class Shopdepartment {
|
|
|
|
[Column(StringLength = 50, IsPrimary = true, IsNullable = false)]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 团队ID
|
|
/// </summary>
|
|
[Column(StringLength = 50)]
|
|
public string DepartmentId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 店铺ID
|
|
/// </summary>
|
|
[ Column(StringLength = 50)]
|
|
public string ShopId { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|