13,192
社区成员




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);
}