using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { /// /// 监测存储流程记录 /// public class MonitorStoreFlowRecord { /// /// 客户标识 /// public long CorpID { get; set; } /// /// 存储时间 /// public DateTime StoreTime { get; set; } /// /// 存储数量 /// public int StoreCount { get; set; } /// /// 存储内容 /// public List StoreContent { get; set; } } }