46 lines
907 B
C#
46 lines
907 B
C#
using System;
|
|
namespace Mtxfw.Model
|
|
{
|
|
/// <summary>
|
|
/// city:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class timer_control
|
|
{
|
|
#region Model
|
|
private int _id;
|
|
private int _ZXflag;//执行标志1
|
|
private int _ZXflag0;//执行标志2
|
|
private int _gtype;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int id
|
|
{
|
|
set{ _id=value;}
|
|
get{return _id;}
|
|
}
|
|
public int ZXflag
|
|
{
|
|
set { _ZXflag = value; }
|
|
get { return _ZXflag; }
|
|
}
|
|
public int ZXflag0
|
|
{
|
|
set { _ZXflag0 = value; }
|
|
get { return _ZXflag0; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int gtype
|
|
{
|
|
set { _gtype = value; }
|
|
get { return _gtype; }
|
|
}
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|