You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
346 B
13 lines
346 B
1 year ago
|
using SSWMS.Common;
|
||
|
|
||
|
namespace SSWMS.Server
|
||
|
{
|
||
|
public class P_IO_CONTROL_MODEL : P_Base_House<IO_CONTROL_MODEL>
|
||
|
{
|
||
|
public IO_CONTROL_MODEL GetModelByDeviceCode(string sDeviceCode)
|
||
|
{
|
||
|
return this._sqlMap.QueryForObject<IO_CONTROL_MODEL>("IO_CONTROL_MODEL_SELECT_BY_DEVICE_CODE", sDeviceCode);
|
||
|
}
|
||
|
}
|
||
|
}
|