优化项目命名空间

This commit is contained in:
izory
2021-09-16 19:35:17 +08:00
parent 086ccbfb6d
commit 48acf4b9f7
55 changed files with 56 additions and 66 deletions

View 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);
}
}