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
487 B
20 lines
487 B
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
|
|
{
|
|
/// <summary>
|
|
/// 器具代码
|
|
/// </summary>
|
|
[Display(Name = "器具代码")]
|
|
public string Code { get; set; }
|
|
/// 占用百分比
|
|
/// </summary>
|
|
[Display(Name = "占用百分比")]
|
|
public decimal Percent { get; set; }
|
|
|
|
}
|
|
|