更改接口灭灯功能

This commit is contained in:
帅凯 贾
2023-09-06 12:44:42 +08:00
parent 7eff397fb5
commit cc78693b7d
7 changed files with 153 additions and 63 deletions

View File

@ -820,6 +820,13 @@ namespace Epost.DAL
DataTable dt = db.GetsqlForDT(sql);
return dt;
}
public DataTable GetForcedendAddress()
{
string sql = string.Format("select distinct ControlIP from v_orders ");
DataTable dt = db.GetsqlForDT(sql);
return dt;
}
#endregion
}
}