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.

74 lines
1.7 KiB

1 year ago
using CK.SCP.Models;
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ChangKeTec.Wms.Models.Wms
{
public partial class TS_EQUIPMENT
{
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
public long UID { get; set; }
[Key]
[StringLength(50)]
[DisplayName("���̱���")]
public string EqptCode { get; set; }
[Required(AllowEmptyStrings = true)]
[DisplayName("���ڿ�λ")]
[StringLength(50)]
public string LocCode { get; set; }
[DisplayName("����")]
public decimal Capacity { get; set; }
[DisplayName("��������")]
public int UsedQty { get; set; }
[DisplayName("����ʱ��")]
public DateTime UpdateTime { get; set; }
[DisplayName("״̬")]
public int State { get; set; }
[Required(AllowEmptyStrings = true)]
[DisplayName("��������")]
[StringLength(50)]
public string Type { get; set; }
[Required(AllowEmptyStrings = true)]
[DisplayName("�ͺ�")]
[StringLength(50)]
public string Model { get; set; }
public int MaintainQty { get; set; }
[StringLength(500)]
public string Remark { get; set; }
public bool NeedMaintain { get; set; }
public int MaintainDuration { get; set; }
public DateTime BeginTime { get; set; }
public DateTime MaintainTIme { get; set; }
public override string ToString()
{
return EntitiesHelper.GetPropertiesString(this);
}
}
}