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.
43 lines
1.2 KiB
43 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 VS_STOCK_CONVERSION
|
||
|
{
|
||
|
[Key]
|
||
|
[Column(Order = 0)]
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("���Ϻ�")]
|
||
|
public string PartCode { get; set; }
|
||
|
|
||
|
//[Key]
|
||
|
//[Column(Order = 1)]
|
||
|
//[StringLength(50)]
|
||
|
//public string Batch { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[Column(Order = 1)]
|
||
|
[StringLength(50)]
|
||
|
[DisplayName("��λ")]
|
||
|
public string LocCode { get; set; }
|
||
|
[DisplayName("����һ")]
|
||
|
public string PartDesc1 { get; set; }
|
||
|
[DisplayName("������")]
|
||
|
public string PartDesc2 { get; set; }
|
||
|
[DisplayName("����1")]
|
||
|
public decimal? Qty { get; set; }
|
||
|
[DisplayName("��λ1")]
|
||
|
public string Unit { get; set; }
|
||
|
[DisplayName("����2")]
|
||
|
public decimal? Qty2 { get; set; }
|
||
|
|
||
|
[DisplayName("��λ2")]
|
||
|
public string Unit2 { get; set; }
|
||
|
[DisplayName("ת����")]
|
||
|
public decimal? Conversion { get; set; }
|
||
|
}
|
||
|
}
|