shgx_tz_mom/ZR.Service/System/IService/ISysUserPostService.cs

15 lines
351 B
C#
Raw Normal View History

2021-08-23 16:57:25 +08:00
using System.Collections.Generic;
using ZR.Model.System;
2021-09-16 19:35:17 +08:00
namespace ZR.Service.System.IService
2021-08-23 16:57:25 +08:00
{
public interface ISysUserPostService: IBaseService<SysUserPost>
{
public void InsertUserPost(SysUser user);
public List<long> GetUserPostsByUserId(long userId);
public string GetPostsStrByUserId(long userId);
}
}