1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models
- {
- /// <summary>
- /// 年历类
- /// </summary>
- public class Calendars
- {
- int id;
- /// <summary>
- /// 主键编号
- /// </summary>
- public int Id
- {
- get { return id; }
- set { id = value; }
- }
- string calendarDate;
- /// <summary>
- /// 日期
- /// </summary>
- public string CalendarDate
- {
- get { return calendarDate; }
- set { calendarDate = value; }
- }
- int cTid;
- /// <summary>
- /// 设置数据类型外键
- /// </summary>
- public int CTid
- {
- get { return cTid; }
- set { cTid = value; }
- }
- }
- }
|