2024-07-01 16:04:40 +08:00

16 lines
362 B
C#

using System.Collections.Generic;
using DOAN.Model.System;
namespace DOAN.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);
}
}