15 lines
325 B
C#
Raw Normal View History

2024-12-03 09:25:16 +08:00
using DOAN.Model.System;
2024-11-28 13:36:05 +08:00
2024-12-03 09:25:16 +08:00
namespace DOAN.ServiceCore.Services
2024-11-28 13:36:05 +08:00
{
public interface ISysUserPostService
{
public void InsertUserPost(SysUser user);
public List<long> GetUserPostsByUserId(long userId);
public string GetPostsStrByUserId(long userId);
bool Delete(long userId);
}
}