50 lines
1.7 KiB
C#
50 lines
1.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SOH.Entities;
|
|
using SOH.Data;
|
|
using System.Data;
|
|
|
|
namespace SOH.BLL
|
|
{
|
|
public interface It_grgzb
|
|
{
|
|
DataTable GetQtMan(DateTime dt, DateTime dt1, string zhbm);
|
|
DataTable GetYsgzlMan(DateTime dt, DateTime dt1, string zhbm, string czy);
|
|
DataTable GetQtxmMx(DateTime dt, DateTime dt1);
|
|
DataTable GetHyxmMx(DateTime dt, DateTime dt1);
|
|
DataTable GetHyxm(DateTime dt, DateTime dt1);
|
|
|
|
DataTable GetQtxm(DateTime dt, DateTime dt1);
|
|
DataTable GetLsjxMx(DateTime dt, DateTime dt1);
|
|
DataTable GetYzbmMx(DateTime dt, DateTime dt1, string yzbm);
|
|
DataTable GetXmzs(DateTime dt, DateTime dt1);
|
|
DataTable GetYsgzlMx(DateTime dt, DateTime dt1);
|
|
DataTable GetLsjx(DateTime dt, DateTime dt1);
|
|
|
|
DataTable GetYzbm(DateTime dt, DateTime dt1);
|
|
List<t_grgzb> GetGrgzb(short fddm, DateTime dt, DateTime dt1);
|
|
List<t_ttgzb> GetTtgzb(short fddm, DateTime dt, DateTime dt1);
|
|
/// <summary>
|
|
/// 通过条码查询个人信息
|
|
/// </summary>
|
|
/// <param name="tm"></param>
|
|
/// <returns></returns>
|
|
t_grgzb GetGrgzbByTm(int tm);
|
|
|
|
string GetGrgzbListByTm(int tm);
|
|
|
|
OperationResult Updategrgzb(t_grgzb b);
|
|
OperationResult Del(int tm);
|
|
OperationResult GrgzbCzrzDel(string czy, int tmztz, int tm);
|
|
OperationResult CzrzFpks(string czy, int tmztz, string czfs, int tm);
|
|
OperationResult GrgzbCzrzUpdate(string czy, int tmztz, int tm);
|
|
OperationResult GrgzbCzrzHF(string czy, int tmztz, int tm);
|
|
|
|
OperationResult Hf(int tm);
|
|
string GetTcByTm(int tmh);
|
|
|
|
}
|
|
}
|