You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
502 B
17 lines
502 B
using System;
|
|
using IoT.Shared.Application.Models;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Platform.Areas.IoTCenter.Controllers;
|
|
|
|
namespace Platform.Application.Models.IoTCenter
|
|
{
|
|
[Display(Name = "参数")]
|
|
public class EditPlatformIoTParameterModel : EditIoTParameterModel
|
|
{
|
|
[Display(Name = "分类")]
|
|
[ReadOnlyForEdit]
|
|
[SelectList(nameof(ProductId), nameof(AjaxController.GetIoTProductByCategory))]
|
|
public Guid? CategoryId { get; set; }
|
|
}
|
|
}
|