12345678910111213141516171819202122232425262728 |
- 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 opemp { get; set; }
- public DateTime? opdate { get; set; }
- public byte? level { get; set; }
- /// <summary>
- /// 0 - 公告栏 1 - 员工提醒
- /// </summary>
- public byte? type { get; set; }
- }
- }
|