Files
kunshan-bzfm-mes-backend/ZR.ServiceCore/Services/IService/ISysUserPostService.cs

15 lines
321 B
C#
Raw Normal View History

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