예제 #1
0
        /// <summary>
        /// 获得版权信息
        /// </summary>
        /// <param name="wid"></param>
        /// <returns></returns>
        public string getwebcopyright(int wid)
        {
            wsiteBll wBll = new wsiteBll();
            Model.wxcodeconfig config= wBll.GetModelByWid(wid, "");
            if (config != null)
            {
                return config.wcopyright;
            }
            else
            {
                return "";
            }


        }
예제 #2
0
 public Model.wxcodeconfig getwebsiteinfo(int wid)
 {
     wsiteBll wBll = new wsiteBll();
     return wBll.GetModelByWid(wid, "");
 }