using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Pur.Entity.configureEntity { [Serializable] public class PurBidFunctionMEntity { private string id; /// /// 主键 /// public string Id { set { id = value; } get { return id; } } private string name; /// /// 名称 /// public string Name { set { name = value; } get { return name; } } private string validflag; /// /// 数据状态(有效、无效) /// public string Validflag { set { validflag = value; } get { return validflag; } } private string flag; /// /// 是否有效(0为无效,1为有效) /// public string Flag { set { flag = value; } get { return flag; } } private DateTime? effectiveTime; /// /// 生效时间 /// public DateTime? EffectiveTime { set { effectiveTime = value; } get { return effectiveTime; } } private string remark; /// /// 备注 /// public string Remark { set { remark = value; } get { return remark; } } private string createName; /// /// 创建人 /// public string CreateName { set { createName = value; } get { return createName; } } private DateTime? createTime; /// /// 创建时间 /// public DateTime? CreateTime { set { createTime = value; } get { return createTime; } } private string updateName; /// /// 修改人 /// public string UpdateName { set { updateName = value; } get { return updateName; } } private DateTime? updateTime; /// /// 修改时间 /// public DateTime? UpdateTime { set { updateTime = value; } get { return updateTime; } } private string deleteName; /// /// 废除人 /// public string DeleteName { set { deleteName = value; } get { return deleteName; } } private DateTime? deleteTime; /// /// 废除时间 /// public DateTime? DeleteTime { set { deleteTime = value; } get { return deleteTime; } } private string createUserid; /// /// 创建人ID /// public string CreateUserid { set { createUserid = value; } get { return createUserid; } } private string updateUserid; /// /// 修改人ID /// public string UpdateUserid { set { updateUserid = value; } get { return updateUserid; } } private string deleteUserid; /// /// 删除人ID /// public string DeleteUserid { set { deleteUserid = value; } get { return deleteUserid; } } private string status; /// /// "状态 1待提报,2审批中,3已审批 /// public string Status { set { status = value; } get { return status; } } private string examinemessage; /// /// 审批意见 /// public string Examinemessage { set { examinemessage = value; } get { return examinemessage; } } private string buyerUnitCode; /// /// 采购管理科室代码 /// public string BuyerUnitCode { set { buyerUnitCode = value; } get { return buyerUnitCode; } } private string buyerUnitDesc; /// /// 采购管理科室描叙 /// public string BuyerUnitDesc { set { buyerUnitDesc = value; } get { return buyerUnitDesc; } } private string[] validDataPurviewIds; /// /// 数据权限 /// public string[] ValidDataPurviewIds { get { return validDataPurviewIds; } set { validDataPurviewIds = value; } } } }