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.
93 lines
2.3 KiB
93 lines
2.3 KiB
4 years ago
|
using System.ComponentModel;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
||
|
namespace ChangKeTec.Wms.Models.Wms
|
||
|
{
|
||
|
|
||
|
public partial class TA_CELL
|
||
|
{
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
|
||
|
public int UID { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("λ�ñ���")]
|
||
|
public string CellCode { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("�����")]
|
||
|
public string CellDesc { get; set; }
|
||
|
|
||
|
[DisplayName("�����")]
|
||
|
public int CellType { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("��Ӧ������")]
|
||
|
public string LineId { get; set; } = "";
|
||
|
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("��Ӧ�ͻ�")]
|
||
|
public string CustId { get; set; } = "";
|
||
|
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("��Ӧ��λ")]
|
||
|
public string LocCode { get; set; } = "";
|
||
|
|
||
|
|
||
|
|
||
|
[DisplayName("Ĭ��ʱ��")]
|
||
|
public int DefaultMinutes { get; set; } = 60;
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("��ע")]
|
||
|
public string Remark { get; set; }
|
||
|
}
|
||
|
public partial class TA_CELL1
|
||
|
{
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
|
||
|
public int UID { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("λ�ñ���")]
|
||
|
public string CellCode { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("�����")]
|
||
|
public string CellDesc { get; set; }
|
||
|
|
||
|
[DisplayName("�����")]
|
||
|
public int CellType { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("��Ӧ������")]
|
||
|
public string LineId { get; set; } = "";
|
||
|
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("��Ӧ�ͻ�")]
|
||
|
public string CustId { get; set; } = "";
|
||
|
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("��Ӧ��λ")]
|
||
|
public string LocCode { get; set; } = "";
|
||
|
|
||
|
|
||
|
|
||
|
[DisplayName("Ĭ��ʱ��")]
|
||
|
public int DefaultMinutes { get; set; } = 60;
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("��ע")]
|
||
|
public string Remark { get; set; }
|
||
|
}
|
||
|
}
|