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.
59 lines
1.4 KiB
59 lines
1.4 KiB
1 year ago
|
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
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 器具编号
|
||
|
/// </summary>
|
||
|
[Display(Name = "器具编号")]
|
||
|
public string Code { get; set; }
|
||
|
/// <summary>
|
||
|
/// 类型
|
||
|
/// </summary>
|
||
|
[Display(Name = "类型")]
|
||
|
public string Type { get; set; } = string.Empty;
|
||
|
/// <summary>
|
||
|
/// 型号
|
||
|
/// </summary>
|
||
|
[Display(Name = "型号")]
|
||
|
public string Model { get; set; } = string.Empty;
|
||
|
/// <summary>
|
||
|
/// 库位编号
|
||
|
/// </summary>
|
||
|
[Display(Name = "库位编号")]
|
||
|
public string LocCode { get; set; } = string.Empty;
|
||
|
/// <summary>
|
||
|
/// 状态
|
||
|
/// </summary>
|
||
|
[Display(Name = "状态")]
|
||
|
public int State { get; set; } = 0;
|
||
|
/// <summary>
|
||
|
/// 备注
|
||
|
/// </summary>
|
||
|
[Display(Name = "备注")]
|
||
|
public string Remark { get; set; } = string.Empty;
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建人
|
||
|
/// </summary>
|
||
|
[Display(Name = "创建人")]
|
||
|
public string Creator { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建时间
|
||
|
/// </summary>
|
||
|
[Display(Name = "创建时间")]
|
||
|
public DateTime CreatTime { get; set; } = DateTime.Now;
|
||
|
|
||
|
}
|