13,189
社区成员
发帖
与我相关
我的任务
分享 public static EquInfo[] getEquInfo(string ID, string OrganID)
{
object[] KeyAndWord = new object[2];
KeyAndWord[0] = ID;
KeyAndWord[1] = OrganID;
SimpleQuery q = new SimpleQuery(typeof(EquInfo), "select * from T_EquInfo as Equ where Equ.C_ID=? and Equ.C_OrganID=?", KeyAndWord);
return (EquInfo[])ExecuteQuery(q);
}