2022-08-23 21:12:59 +08:00

105 lines
2.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections;
using System.Collections.Generic;
using AIMSDAL;
namespace AIMSModel
{
[Serializable]
public partial class KBLIST
{
private string kBSEQ;
private string kBPARENT;
private string kBNAME;
private string kBVALUE;
private string kBReflection;
private int? kBSTYLE;
private int? lISTINDEX;
private int? isValid;
private string operatorNo;
private DateTime? operateDate;
/// <summary>
/// 节点ID
/// </summary>
public string KBSEQ
{
get{ return kBSEQ; }
set{ kBSEQ=value; }
}
/// <summary>
/// 父节点ID
/// </summary>
public string KBPARENT
{
get{ return kBPARENT; }
set{ kBPARENT=value; }
}
/// <summary>
/// 节点名称
/// </summary>
public string KBNAME
{
get{ return kBNAME; }
set{ kBNAME=value; }
}
/// <summary>
/// 节点sql语句
/// </summary>
public string KBVALUE
{
get{ return kBVALUE; }
set{ kBVALUE=value; }
}
/// <summary>
/// 节点映射
/// </summary>
public string KBReflection
{
get{ return kBReflection; }
set{ kBReflection=value; }
}
/// <summary>
/// 节点样式sql语句、下拉列表
/// </summary>
public int? KBSTYLE
{
get{ return kBSTYLE; }
set{ kBSTYLE=value; }
}
/// <summary>
/// 节点内排序
/// </summary>
public int? LISTINDEX
{
get{ return lISTINDEX; }
set{ lISTINDEX=value; }
}
/// <summary>
/// 是否有效
/// </summary>
public int? IsValid
{
get{ return isValid; }
set{ isValid=value; }
}
/// <summary>
/// 操作人工号
/// </summary>
public string OperatorNo
{
get{ return operatorNo; }
set{ operatorNo=value; }
}
/// <summary>
/// 操作日期
/// </summary>
public DateTime? OperateDate
{
get{ return operateDate; }
set{ operateDate=value; }
}
}
}