CCN.Modules.Customer.DataAccess.CustomerDA.GetApplyModel C# (CSharp) Method

GetApplyModel() public method

获取申请的信息
public GetApplyModel ( string applyid ) : CompanyApplyUpdateModel
applyid string
return CCN.Modules.Customer.BusinessEntity.CompanyApplyUpdateModel
        public CompanyApplyUpdateModel GetApplyModel(string applyid)
        {
            const string sqlS = "select * from settled_info_applyupdate where innerid=@innerid and status=2;";
            return Helper.Query<CompanyApplyUpdateModel>(sqlS, new { innerid = applyid }).FirstOrDefault();
        }