Calendars.cs 843 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Models
  6. {
  7. /// <summary>
  8. /// 年历类
  9. /// </summary>
  10. public class Calendars
  11. {
  12. int id;
  13. /// <summary>
  14. /// 主键编号
  15. /// </summary>
  16. public int Id
  17. {
  18. get { return id; }
  19. set { id = value; }
  20. }
  21. string calendarDate;
  22. /// <summary>
  23. /// 日期
  24. /// </summary>
  25. public string CalendarDate
  26. {
  27. get { return calendarDate; }
  28. set { calendarDate = value; }
  29. }
  30. int cTid;
  31. /// <summary>
  32. /// 设置数据类型外键
  33. /// </summary>
  34. public int CTid
  35. {
  36. get { return cTid; }
  37. set { cTid = value; }
  38. }
  39. }
  40. }