using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using Win_in.Sfs.Shared.Domain.Shared; namespace Win_in.Sfs.Basedata.Application.Contracts; public class EquipmentLocCapCheckInput { /// /// 器具代码 /// [Display(Name = "器具代码")] public string Code { get; set; } /// 占用百分比 /// [Display(Name = "占用百分比")] public decimal Percent { get; set; } }