IWcsTagValueService.cs 420 B

123456789101112131415161718192021
  1. using WCS.Entitys;
  2. using System.Collections.Generic;
  3. using System.Threading.Tasks;
  4. namespace WCS.Services
  5. {
  6. public interface IWcsTagValueService
  7. {
  8. List<WcsTagValue> GetList(WcsTagValue vo);
  9. //查询详情
  10. Task<WcsTagValue> GetById(int id);
  11. //添加
  12. Task<bool> Create(WcsTagValue vo);
  13. //更新
  14. Task<bool> Update(WcsTagValue vo);
  15. }
  16. }