mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2026-04-08 10:01:29 +08:00
routine update
This commit is contained in:
@@ -214,6 +214,7 @@ namespace OpenAuth.App.Extention
|
||||
/// <returns></returns>
|
||||
private string SqlBuider(dynamic schemeContentJson, string frmData, string keyValue)
|
||||
{
|
||||
return "";
|
||||
try
|
||||
{
|
||||
if (schemeContentJson.Frm.isSystemTable.Value == 1)
|
||||
|
||||
@@ -84,14 +84,15 @@ namespace OpenAuth.Domain.Service
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public WFSchemeInfo GetEntity(string keyValue)
|
||||
public WFSchemeInfo GetEntity(Guid keyValue)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
return _unitWork.FindSingle<WFSchemeInfo>(u => u.Id == keyValue);
|
||||
}
|
||||
|
||||
public WFSchemeContent GetSchemeEntity(Guid schemeinfoId, string schemeinfoSchemeVersion)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
return _unitWork.FindSingle<WFSchemeContent>(u =>
|
||||
u.SchemeInfoId == schemeinfoId && u.SchemeVersion == schemeinfoSchemeVersion);
|
||||
}
|
||||
|
||||
public void UpdateState(string keyValue, int state)
|
||||
|
||||
Reference in New Issue
Block a user