using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model
{
///
/// 监测存储客户记录
///
public class MonitorStoreCorpRecord
{
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 记录列表
///
public List Records { get; set; }
}
}