增加小格口绑定

This commit is contained in:
jl
2024-01-15 17:37:47 +08:00
parent 36a20b88ce
commit a3c29b5bf8
6 changed files with 92 additions and 49 deletions

View File

@ -408,5 +408,14 @@ namespace Epost.DAL
}
#endregion
#region
public DataTable getQueueList()
{
string sql = string.Format("select top 1 * from OrdersQueue where state=3 order by id desc");
return db.GetsqlForDT(sql);
}
#endregion
}
}