16 lines
362 B
C#
Raw Normal View History

2024-05-16 13:30:30 +08:00
using System.Collections.Generic;
2024-07-01 16:04:10 +08:00
using DOAN.Model.System;
2024-05-16 13:30:30 +08:00
2024-07-01 16:04:10 +08:00
namespace DOAN.Service.System.IService
2024-05-16 13:30:30 +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);
}
}