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.
iot/projects/Platform/Application/Models/IoTCenter/EditPlatformIoTApiModel.cs

16 lines
424 B

using System;
using IoT.Shared.Application.Models;
using System.ComponentModel.DataAnnotations;
namespace Platform.Application.Models.IoTCenter
{
[Display(Name = "接口")]
public class EditPlatformIoTApiModel : EditIoTApiModel
{
[Display(Name = "分类")]
[ReadOnlyForEdit]
[SelectList(nameof(ProductId),"GetIoTProductByCategory")]
public Guid? CategoryId { get; set; }
}
}