namespace Core.StlMes.Client.Qcm.model { /// /// 数据库表COM_BASE_STD_ALPHA所对应的实体类(生成工具:代码生成工具2.0) /// public class ComBaseStdAlphaEntity { /// /// Alpha代码 /// private string alphaCode; /// /// Alpha名称 /// private string alphaName; /// /// 标准代码 /// private string stdCode; /// /// 标准描述 /// private string stdNote; /// /// 标准协会代码(4001) /// private string stdStyle; /// /// 标准协会描述(美标、英标、国标、行业标准、企标.......) /// private string stdStyleName; /// /// 标准版本号 /// private string stdVersion; /// /// 管理部门代码 /// private string departmentCode; /// /// 管理部门描述 /// private string departmentDesc; /// /// 管理科室代码 /// private string unitCode; /// /// 管理科室描述 /// private string unitDesc; /// /// 创建人 /// private string createName; /// /// 创建时间 /// private string createTime; /// /// 修改人 /// private string updateName; /// /// 修改时间 /// private string updateTime; /// /// 删除人 /// private string deleteName; /// /// 删除时间 /// private string deleteTime; /// /// 有效标志(1:有效,0:无效) /// private string validflag; /// /// 备注 /// private string memo; public ComBaseStdAlphaEntity() { alphaCode = ""; alphaName = ""; stdCode = ""; stdNote = ""; stdStyle = ""; stdStyleName = ""; stdVersion = ""; departmentCode = ""; departmentDesc = ""; unitCode = ""; unitDesc = ""; createName = ""; createTime = ""; updateName = ""; updateTime = ""; deleteName = ""; deleteTime = ""; validflag = ""; memo = ""; } /// /// Alpha代码 /// public string AlphaCode { get { return alphaCode; } set { alphaCode = value; } } /// /// Alpha名称 /// public string AlphaName { get { return alphaName; } set { alphaName = value; } } /// /// 标准代码 /// public string StdCode { get { return stdCode; } set { stdCode = value; } } /// /// 标准描述 /// public string StdNote { get { return stdNote; } set { stdNote = value; } } /// /// 标准协会代码(4001) /// public string StdStyle { get { return stdStyle; } set { stdStyle = value; } } /// /// 标准协会描述(美标、英标、国标、行业标准、企标.......) /// public string StdStyleName { get { return stdStyleName; } set { stdStyleName = value; } } /// /// 标准版本号 /// public string StdVersion { get { return stdVersion; } set { stdVersion = value; } } /// /// 管理部门代码 /// public string DepartmentCode { get { return departmentCode; } set { departmentCode = value; } } /// /// 管理部门描述 /// public string DepartmentDesc { get { return departmentDesc; } set { departmentDesc = value; } } /// /// 管理科室代码 /// public string UnitCode { get { return unitCode; } set { unitCode = value; } } /// /// 管理科室描述 /// public string UnitDesc { get { return unitDesc; } set { unitDesc = value; } } /// /// 创建人 /// public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 删除人 /// public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /// /// 有效标志(1:有效,0:无效) /// public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 备注 /// public string Memo { get { return memo; } set { memo = value; } } } }