17 lines
386 B
C#
17 lines
386 B
C#
using System.Collections.Generic;
|
|
using ZR.Model.System;
|
|
using ZR.ServiceCore.Model;
|
|
|
|
namespace ZR.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);
|
|
}
|
|
}
|