using Business.Core.Attributes;
using Bussiness.MongoModel;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Bussiness.MongoModel.SystemData
{
///
/// 班次无效时间表
///
[Comment("班次无效时间表")]
[CollectionName("dopbase", "mo_sys_shift_invalid_time")]
public class mo_sys_shift_invalid_time:MoBaseEntity
{
/////
///// 主键id
/////
//[Key]
//[Comment("数据状态标识 1启用 0停用")]
//public long invalid_time_id { get; set; }
///
/// 班次id
///
[Comment("班次id")]
public long? schedule_id { get; set; }
///
/// 开始时间
///
[Comment("开始时间")]
public DateTime start_time { get; set; }
///
/// 结束时间
///
[Comment("结束时间")]
public DateTime end_time { get; set; }
}
}