//实体类
function PromotionInfo()
{
this.Model_ClassName = 'Hqen.DMS.Model.Promotion.PromotionInfo';
this.PromotionInfoID = null; //推介信息ID（自增）
this.UserID = null; //用户标识
this.Title = null; //信息标题（15汉字以内）
this.Keyword = null; //关键词（用户自行设置，多个关键词之间用逗号分隔）
this.ElectronicCategoryID = null; //信息类别ID(包括IC二三极管类、元器件类、其他类，元器类参照元器类别表)
this.Description = null; //详细内容(支持HTML)
this.ExpiredDate = null; //有效期(在最大购买时间内调整,结束时间)
this.CompanyName = null; //公司名称
this.LinkMan = null; //联系人
this.Phone = null; //电话
this.Fax = null; //传真
this.MobilePhone = null; //手机
this.CountryID = null; //国家ID
this.ProvinceID = null; //省份ID
this.CityID = null; //城市ID
this.Address = null; //地址
this.Postcode = null; //邮政编码
this.Email = null; //电子邮件
this.Status = null; //状态（0-无意义 1-展示 2-待展示 默认待展示）
this.UpdateDate = null; //更新时间（默认当前时间）
this.AuditedStatus = null; //审核状态 1-审核通过，2-审核未通过
this.PostTime = null; //展示时间（默认当前时间）
this.PositionName = null; //职务名称
this.CompanyWebSite = null; //公司网址
this.BeginTime = null; //有效期开始时间(在最大购买时间内调整,开始时间)
this.AuditRemark = null; //
this.PicName = null; //图片名称
this.PageIndex=1;
this.PageSize=20;
this.TotalPage=-1;
this.TotalCount=-1;
this.AllowPaging=true;
this.Keyword='';
}

