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.
69 lines
1.7 KiB
69 lines
1.7 KiB
4 years ago
|
using System;
|
||
|
using System.ComponentModel;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
||
|
namespace ChangKeTec.Wms.Models.Wms
|
||
|
{
|
||
|
public partial class TM_CQBMPT_INJECTION_RAW_TANK
|
||
|
{
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
|
||
|
public int UID { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("��Ͳ��")]
|
||
|
public string TankId { get; set; }
|
||
|
|
||
|
[DisplayName("����")]
|
||
|
public decimal Capacity { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("���Ϻ�")]
|
||
|
public string PartCode { get; set; }
|
||
|
|
||
|
[DisplayName("��������")]
|
||
|
public string PartDesc => WmsCache.GetPartDesc(PartCode);
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("����")]
|
||
|
public string Batch { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("��Ӧ�̱���")]
|
||
|
public string VendId { get; set; }
|
||
|
|
||
|
[NotMapped]
|
||
|
public string ��Ӧ������ => WmsCache.GetVenderName(VendId);
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("��Ӧ������")]
|
||
|
public string VendBatch { get; set; }
|
||
|
|
||
|
[DisplayName("����")]
|
||
|
public decimal Qty { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("������")]
|
||
|
public string UpdateOper { get; set; }
|
||
|
|
||
|
[DisplayName("����ʱ��")]
|
||
|
public DateTime UpdateTime { get; set; }
|
||
|
|
||
|
[DisplayName("��������")]
|
||
|
public decimal UpdateQty { get; set; }
|
||
|
|
||
|
[NotMapped]
|
||
|
[DisplayName("������̨")]
|
||
|
public string MachineIds { get; set; }
|
||
|
|
||
|
|
||
|
[DisplayName("״̬")]
|
||
|
public int State { get; set; }
|
||
|
|
||
|
[StringLength(500)]
|
||
|
[DisplayName("��ע")]
|
||
|
public string Remark { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|