using LJLib.DAL.SQL;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JLHHJSvr.Com.Model
{
[PK(new[] { "postid" })]
public sealed class u_sys_post
{
public int scid { get; set; }
public int? postid { get; set; }
public int deptid { get; set; }
public int empid { get; set; }
public DateTime? sdate { get; set; }
public DateTime? edate { get; set; }
public string dscrp { get; set; }
public string empids { get; set; }
public string opemp { get; set; }
public DateTime? opdate { get; set; }
public byte? level { get; set; }
///
/// 0 - 公告栏 1 - 员工提醒
///
public byte? type { get; set; }
public List empidList { get; set; }
}
}