ISysUserPostService.cs 358 B

123456789101112131415
  1. using System.Collections.Generic;
  2. using ZR.Model.System;
  3. namespace ZR.Service.System.IService
  4. {
  5. public interface ISysUserPostService
  6. {
  7. public void InsertUserPost(SysUser user);
  8. public List<long> GetUserPostsByUserId(long userId);
  9. public string GetPostsStrByUserId(long userId);
  10. bool Delete(long userId);
  11. }
  12. }