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