u_sys_post.cs 797 B

12345678910111213141516171819202122232425262728
  1. using LJLib.DAL.SQL;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace JLHHJSvr.Com.Model
  8. {
  9. [PK(new[] { "postid" })]
  10. public sealed class u_sys_post
  11. {
  12. public int scid { get; set; }
  13. public int? postid { get; set; }
  14. public int deptid { get; set; }
  15. public int empid { get; set; }
  16. public DateTime? sdate { get; set; }
  17. public DateTime? edate { get; set; }
  18. public string dscrp { get; set; }
  19. public string opemp { get; set; }
  20. public DateTime? opdate { get; set; }
  21. public byte? level { get; set; }
  22. /// <summary>
  23. /// 0 - 公告栏 1 - 员工提醒
  24. /// </summary>
  25. public byte? type { get; set; }
  26. }
  27. }