using Business.Model; using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace Bussiness.Model.SystemData { /// /// 班制班次关联表 /// [Description("班制班次关联表")] public class sys_shift_schedule:BaseEntity { /// /// 主键id /// [Key] [Description("主键id")] public long id { get; set; } /// /// 班制id /// [StringLength(50)] [Description("班制id")] public long shift_id { get; set; } /// /// 班次id /// [StringLength(255)] [Description("班次id")] public long schedule_id { get; set; } } }