using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 添加设备变更记录
///
public class AddProductModifyRecordInput
{
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 设备标识
///
public long ProductID { get; set; }
///
/// 标题
///
public string Caption { get; set; }
///
/// 变更类型
///
public string ModifyType { get; set; }
///
/// 开始时间
///
public DateTime StartTime { get; set; }
///
/// 结束时间
///
public DateTime EndTime { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}