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.
20 lines
473 B
20 lines
473 B
using Infrastructure.Application;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace SPService.Applicaiton.Models
|
|
{
|
|
[Display(Name = "指令")]
|
|
public class EditGatewayModel : EditModel
|
|
{
|
|
[Required]
|
|
[Display(Name = "编号")]
|
|
public string Sn { get; set; }
|
|
|
|
[Required]
|
|
[Display(Name = "IP")]
|
|
public string IP { get; set; }
|
|
|
|
[Display(Name = "启用")]
|
|
public string Enable { get; set; }
|
|
}
|
|
} |