Files
shgx_tz_mes_backend_sync/ZR.Service/System/IService/ISysUserPostService.cs

15 lines
324 B
C#
Raw Normal View History

2024-06-07 11:04:26 +08:00
using ZR.Model.System;
2021-08-23 16:57:25 +08:00
2021-09-16 19:35:17 +08:00
namespace ZR.Service.System.IService
2021-08-23 16:57:25 +08:00
{
2021-09-27 08:06:09 +08:00
public interface ISysUserPostService
2021-08-23 16:57:25 +08:00
{
public void InsertUserPost(SysUser user);
public List<long> GetUserPostsByUserId(long userId);
public string GetPostsStrByUserId(long userId);
2022-03-19 08:04:08 +08:00
bool Delete(long userId);
2021-08-23 16:57:25 +08:00
}
}