u_sys_post.cs 889 B

123456789101112131415161718192021222324252627282930
  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 empids { get; set; }
  20. public string opemp { get; set; }
  21. public DateTime? opdate { get; set; }
  22. public byte? level { get; set; }
  23. /// <summary>
  24. /// 0 - 公告栏 1 - 员工提醒
  25. /// </summary>
  26. public byte? type { get; set; }
  27. public List<int> empidList { get; set; }
  28. }
  29. }