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.
49 lines
1.2 KiB
49 lines
1.2 KiB
4 years ago
|
using System.ComponentModel;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
using ChangKeTec.Wms.Models.Enums;
|
||
|
|
||
|
namespace ChangKeTec.Wms.Models.Wms
|
||
|
{
|
||
|
public partial class TB_EQPT_LOAD
|
||
|
{
|
||
|
[Key]
|
||
|
public int UID { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("���ݱ���")]
|
||
|
public string BillNum { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("���߱���")]
|
||
|
public string EqptCode { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("����")]
|
||
|
public string BarCode { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("������")]
|
||
|
public string PartCode { get; set; }
|
||
|
|
||
|
[StringLength(20)]
|
||
|
[DisplayName("����")]
|
||
|
public string Batch { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("��λ")]
|
||
|
public string LocCode { get; set; }
|
||
|
|
||
|
[DisplayName("����")]
|
||
|
public decimal Qty { get; set; }
|
||
|
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||
|
[DisplayName("״̬")]
|
||
|
public EnumStockState State { get; set; }
|
||
|
|
||
|
[StringLength(200)]
|
||
|
[DisplayName("��ע")]
|
||
|
public string Remark { get; set; }
|
||
|
}
|
||
|
}
|