123456789101112131415161718192021 |
- using WCS.Entitys;
- using System.Collections.Generic;
- using System.Threading.Tasks;
- namespace WCS.Services
- {
- public interface IWcsTagValueService
- {
- List<WcsTagValue> GetList(WcsTagValue vo);
-
- //查询详情
- Task<WcsTagValue> GetById(int id);
- //添加
- Task<bool> Create(WcsTagValue vo);
- //更新
- Task<bool> Update(WcsTagValue vo);
-
- }
- }
|