using HighWayIot.Repository.domain; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HighWayIot.Repository.service { public interface IContentService { /// /// 获取RFID信息列表 /// /// List GetContentInfos( ); /// /// 新增一条信息 /// /// void AddContentInfo(RFIDContent content); } }