CCN.Modules.Car.DataAccess.CarDataAccess.GetIntroducesList C# (CSharp) Method

GetIntroducesList() public method

获取精品车商的公司简介列表
public GetIntroducesList ( string custid ) : dynamic
custid string
return dynamic
        public dynamic GetIntroducesList(string custid)
        {
            const string sql = @"select * from cust_site_introduces where custid = @custid;";

            try
            {
                return Helper.Query<dynamic>(sql, new { custid });
            }
            catch (Exception ex)
            {
                LoggerFactories.CreateLogger().Write("获取精品车商的公司简介列表异常:", TraceEventType.Error, ex);
                return null;
            }
        }
CarDataAccess