24 lines
597 B
C#
24 lines
597 B
C#
|
|
using APT.BaseData.Domain.ApiModel.PF;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace APT.BaseData.Domain.ApiModel.ED
|
|||
|
|
{
|
|||
|
|
public class ProductUnitSetDetail
|
|||
|
|
{
|
|||
|
|
public string procuctUnitSetId { get; set; }
|
|||
|
|
public string orgId { get; set; }
|
|||
|
|
public string meterNodeId { get; set; }
|
|||
|
|
public string title { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 时间
|
|||
|
|
/// </summary>
|
|||
|
|
public string startTime { get; set; }
|
|||
|
|
|
|||
|
|
public string endTime { get; set; }
|
|||
|
|
|
|||
|
|
public string editListModel { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|