using System.ComponentModel.DataAnnotations;
using Win_in.Sfs.Shared.Domain;
using Win_in.Sfs.Shared.Domain.Shared;
namespace Win_in.Sfs.Basedata.Application.Contracts;
using System;
using System.Collections.Generic;
[Display(Name = "器具基本信息")]
public class EquipmentDTO : SfsBaseDataDTOBase, IHasCode
{
///
/// 器具编号
///
[Display(Name = "器具编号")]
public string Code { get; set; }
///
/// 类型
///
[Display(Name = "类型")]
public string Type { get; set; } = string.Empty;
///
/// 型号
///
[Display(Name = "型号")]
public string Model { get; set; } = string.Empty;
///
/// 库位编号
///
[Display(Name = "库位编号")]
public string LocCode { get; set; } = string.Empty;
///
/// 状态
///
[Display(Name = "状态")]
public int State { get; set; } = 0;
///
/// 创建人
///
[Display(Name = "创建人")]
public string Creator { get; set; }
///
/// 创建时间
///
[Display(Name = "创建时间")]
public DateTime CreatTime { get; set; } = DateTime.Now;
///
/// 标包数量
///
[Display(Name = "标包数")]
public decimal StdQty { get; set; }
}