wpf_tool_online/api/ARW.Service/System/IService/ISysUserPostService.cs
2023-05-31 21:06:42 +08:00

16 lines
360 B
C#

using System.Collections.Generic;
using ARW.Model.System;
namespace ARW.Service.System.IService
{
public interface ISysUserPostService
{
public void InsertUserPost(SysUser user);
public List<long> GetUserPostsByUserId(long userId);
public string GetPostsStrByUserId(long userId);
bool Delete(long userId);
}
}