using Business.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Linq;
using System.Net.NetworkInformation;
using System.Text;
using System.Threading.Tasks;
namespace Bussiness.Model.SystemData
{
///
/// 班制班次关联表
///
public class sys_shift_shiftslice:BaseEntity
{
///
/// 主键id
///
[Key]
public long id { get; set; }
///
/// 班制id
///
[StringLength(50)]
public string shift_id { get; set; }
///
/// 班次id
///
[StringLength(255)]
public string slice_id { get; set; }
}
}