first commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using JSMachine.WMS.App.Dto;
|
||||
using JSMachine.WMS.App.IService;
|
||||
using JSMachine.WMS.Domain.Entity;
|
||||
using JSMachine.WMS.Domain.IRepository;
|
||||
|
||||
namespace JSMachine.WMS.App.ServiceImpl
|
||||
{
|
||||
public class UserInfoService : BaseService<UserInfoDto, UserInfo>, IUserInfoService
|
||||
{
|
||||
private IUserInfoRepository _userInfoRepository;
|
||||
|
||||
public UserInfoService(IUserInfoRepository repository) : base(repository)
|
||||
{
|
||||
_userInfoRepository = repository;
|
||||
}
|
||||
|
||||
// 可以在这里添加UserInfo特有的方法实现
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user