예제 #1
0
        /// <summary>
        /// 得到店铺基本信息
        /// </summary>
        /// <param name="accid"></param>
        /// <returns></returns>
        public static T_AccountBasic GetAccountBasic(int accid)
        {
            T_AccountDAL   DAL   = new T_AccountDAL();
            T_AccountBasic model = DAL.GetAccountBasic(accid);

            if (model != null)
            {
                model.aotjbName  = Enum.GetName(typeof(Model.Enum.AccountEnum.StoreVer), model.aotjb);
                model.activeName = Enum.GetName(typeof(Model.Enum.AccountEnum.ActiveStatus), model.active);
            }

            return(model);
        }
예제 #2
0
 public RechargeOrderDate()
 {
     accModel = new T_AccountBasic();
 }