- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using WorkFlowApi.Entity;
- namespace WorkFlowApi.IBusiness
- {
- public interface IUserAccountBusiness: IBaseBusiness<T_Sys_UserAccount>
- {
- T_Sys_UserAccount GetEntityByUserCode(string userCode);
- }
- }
|