using System.Diagnostics.CodeAnalysis; namespace ZeroFramework.DeviceCenter.Application.Models.Devices { public class DeviceUpdateRequestModel { /// /// 产品编号 /// public long Id { get; set; } /// /// 设备名称 /// [AllowNull] public string Name { get; set; } /// /// 经纬度坐标 /// [AllowNull] public string? Coordinate { get; set; } /// /// 描述信息 /// public string? Remark { get; set; } } }