优化项目命名空间
This commit is contained in:
14
ZR.Service/System/IService/ISysUserPostService.cs
Normal file
14
ZR.Service/System/IService/ISysUserPostService.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
using ZR.Model.System;
|
||||
|
||||
namespace ZR.Service.System.IService
|
||||
{
|
||||
public interface ISysUserPostService: IBaseService<SysUserPost>
|
||||
{
|
||||
public void InsertUserPost(SysUser user);
|
||||
|
||||
public List<long> GetUserPostsByUserId(long userId);
|
||||
|
||||
public string GetPostsStrByUserId(long userId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user