ZrAdminNetCore/ZR.Service/System/IService/ISysUserPostService.cs
不做码农 40026f596f 测试
2021-09-27 08:06:09 +08:00

16 lines
357 B
C#

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