|
|
@@ -82,6 +82,7 @@ namespace Learun.Application.WebApi |
|
|
|
Get["/stuAttendance"] = StuAttendance;//全校考勤 |
|
|
|
Post["/getStuInfo"] = GetStuNoByAccount; |
|
|
|
Post["/getEmpInfo"] = GetEmpNoByAccount; |
|
|
|
Post["/getEmpInfo2"] = GetEmpNoByAccount2; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -122,6 +123,12 @@ namespace Learun.Application.WebApi |
|
|
|
var stuEntity = empInfoIBLL.GetEmpInfoEntityByEmpNo(account); |
|
|
|
return Success(stuEntity); |
|
|
|
} |
|
|
|
public Response GetEmpNoByAccount2(dynamic _) |
|
|
|
{ |
|
|
|
string account = this.Request.Form.account.ToString(); |
|
|
|
var stuEntity = empInfoIBLL.GetEmpInfoEntityByIdCardNo(account); |
|
|
|
return Success(stuEntity); |
|
|
|
} |
|
|
|
public Response GetStuNoByAccount(dynamic _) |
|
|
|
{ |
|
|
|
string account = this.Request.Form.account.ToString(); |
|
|
|