using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Application
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class SetProductTypePropertyGroupInput
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public long CorpID { get; set; }
|
|
/// <summary>
|
/// 设备类型标识
|
/// </summary>
|
public long ProductTypeID { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public long GroupID { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public List<SetProductTypePropertyItemInput> Items { get; set; }
|
}
|
}
|