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.
81 lines
2.2 KiB
81 lines
2.2 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_STORE_LOCATION
|
||
|
{
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
|
||
|
public int UID { get; set; }
|
||
|
|
||
|
[DisplayName("״̬")]
|
||
|
|
||
|
public int State { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("�����")]
|
||
|
public string LocCode { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("�����")]
|
||
|
public string LocName { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("ERP�����")]
|
||
|
public string ErpLocCode { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("����")]
|
||
|
public string AreaCode { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("���")]
|
||
|
public string GroupCode { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("�����")]
|
||
|
public string LocType { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("Ĭ������")]
|
||
|
public string DefaultPartCode { get; set; }
|
||
|
|
||
|
[DisplayName("����������")]
|
||
|
public bool IsEnableNegativeStock { get; set; }
|
||
|
|
||
|
[DisplayName("�Զ��Ƴ�������")]
|
||
|
public bool AutoRemoveZeroStockDetail { get; set; }
|
||
|
|
||
|
[DisplayName("��������")]
|
||
|
public int MaxBoxQty { get; set; }
|
||
|
|
||
|
[Column(TypeName = "money")]
|
||
|
[DisplayName("ռ�ðٷְ�")]
|
||
|
public decimal StoredPercent { get; set; }
|
||
|
|
||
|
[DisplayName("��������")]
|
||
|
public bool IsEnableMix { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("��Ŀ����")]
|
||
|
public string ProjectId { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("����Ա")]
|
||
|
public string StoreKeeper { get; set; }
|
||
|
|
||
|
[StringLength(500)]
|
||
|
[DisplayName("��ע")]
|
||
|
public string Remark { get; set; }
|
||
|
|
||
|
//[NotMapped]
|
||
|
//[StringLength(50)]
|
||
|
//[DisplayName("�ֿ�����")]
|
||
|
//public string WhseCode => WmsCache.GetWhseCode(GroupCode);
|
||
|
}
|
||
|
}
|