16 lines
360 B
C#
16 lines
360 B
C#
using System.Collections.Generic;
|
|
using ARW.Model.System;
|
|
|
|
namespace ARW.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);
|
|
}
|
|
}
|