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.
68 lines
1.7 KiB
68 lines
1.7 KiB
4 years ago
|
using System;
|
||
|
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_CHECK_LOC
|
||
|
{
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
|
||
|
public int UID { get; set; }
|
||
|
|
||
|
[NotMapped]
|
||
|
public string ״̬ => CheckState.ToString();
|
||
|
|
||
|
public EnumCheckResult CheckResult { get; set; }
|
||
|
|
||
|
[NotMapped]
|
||
|
public string ���� => CheckResult.ToString();
|
||
|
|
||
|
[Key]
|
||
|
[Column(Order = 0)]
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("���ݱ���")]
|
||
|
public string BillNum { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[Column(Order = 1)]
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("�̵���λ")]
|
||
|
public string LocCode { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("�Ƶ���")]
|
||
|
public string OperName { get; set; }
|
||
|
|
||
|
[DisplayName("����ʱ��")]
|
||
|
public DateTime BillTime { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("�̵㿪ʼʱ��")]
|
||
|
public string CheckBeginTime { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("�̵�����ʱ��")]
|
||
|
public string CheckEndTime { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("���̿�ʼʱ��")]
|
||
|
public string ReCheckBeginTime { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("���̽���ʱ��")]
|
||
|
public string ReCheckEndTime { get; set; }
|
||
|
|
||
|
|
||
|
public EnumCheckState CheckState { get; set; }
|
||
|
|
||
|
|
||
|
[StringLength(500)]
|
||
|
[DisplayName("��ע")]
|
||
|
public string Remark { get; set; }
|
||
|
}
|
||
|
}
|