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