22 lines
505 B
C#
22 lines
505 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using SOH.Entities;
|
|||
|
|
|
|||
|
|
namespace SOH.BLL
|
|||
|
|
{
|
|||
|
|
public interface It_ygzd
|
|||
|
|
{
|
|||
|
|
IList<t_ygzd> GetList(string jzm);
|
|||
|
|
Data.OperationResult Update(t_ygzd ygzd);
|
|||
|
|
Data.OperationResult Insert(t_ygzd ygzd);
|
|||
|
|
//根据登陆账号查询名称
|
|||
|
|
IList<t_ygzd> GetygmodelByCzym(string czym);
|
|||
|
|
|
|||
|
|
List<t_ygzd> GetListByFddm(short fddm);
|
|||
|
|
|
|||
|
|
IList<t_ygzd> GetListByZX(string jzm);
|
|||
|
|
}
|
|||
|
|
}
|