37 lines
1.5 KiB
C#
37 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SOH.Entities;
|
|
using SOH.Data;
|
|
|
|
namespace SOH.BLL
|
|
{
|
|
public interface It_tempdjxm
|
|
{
|
|
String getInfo(String tm);
|
|
String getBenKeShi(String tm, string username);
|
|
String getQiTaKeShi(String tm, string username);
|
|
List<t_jglr> getZhxm(int ksbm, String tm,int xb);
|
|
Data.OperationResult updateZtz(t_tempdjxm tempdjxm);
|
|
String getHuaYanInfo(DateTime startTime, DateTime endTime, int ksbm, int tm);
|
|
|
|
String getXb(int tm);
|
|
String getHuaYanInfoWaiSong(DateTime startTime, DateTime endTime, int ksbm, int tm);
|
|
String getHuaYanQiTaKeShi(String tm, int ksbm, short yydm);
|
|
String getAllKs(String tm, string username);
|
|
List<t_jglr> getjcjg(int tm, List<int> ksbms,int xb);
|
|
List<t_tempdjxm> GetModelBytm(int tm, int ztz);
|
|
List<t_jglr> getZhxm2(int ksbm, String tm, int xb);
|
|
List<t_tempdjxm> GetModelBytm2(int tm);
|
|
OperationResult Updatedjxm(int tm, short ztz, short tmztz);
|
|
String getDrtjr(DateTime djrq, string czym);
|
|
int getFinish(DateTime djrq, string czym);
|
|
int getWait(DateTime djrq, string czym);
|
|
String getBksGzl(DateTime startTime, DateTime endTime, string czym);
|
|
String rygzl(DateTime startTime, DateTime endTime, string czym);
|
|
Data.OperationResult updateTjxmZtz(int tmh, int zhbm, short ztz);
|
|
List<t_ccbg> getCCBG(int ksbm, string strBm);
|
|
}
|
|
}
|