Beispiel #1
0
        public string cardname(int id)
        {
            Lebi_CardOrder model = B_Lebi_CardOrder.GetModel(id);

            if (model == null)
            {
                return("");
            }
            return(Lang(model.Name));
        }
Beispiel #2
0
        /// <summary>
        /// 卡类型
        /// </summary>
        /// <param name="oid"></param>
        /// <returns></returns>
        public string CardName(int oid)
        {
            Lebi_CardOrder order = B_Lebi_CardOrder.GetModel(oid);

            if (order == null)
            {
                return("");
            }
            return(Lang(order.Name));
        }