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.
33 lines
825 B
33 lines
825 B
1 year ago
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
||
|
namespace ChangKeTec.Wms.Models.Wms
|
||
|
{
|
||
|
public partial class VIEW_STOCK_DETAIL_SUM
|
||
|
{
|
||
|
[Key]
|
||
|
[Column(Order = 0)]
|
||
|
[StringLength(50)]
|
||
|
public string 库位 { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[Column(Order = 1)]
|
||
|
[StringLength(50)]
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||
|
public string 零件号 { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string 批次 { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[Column(Order = 2, TypeName = "money")]
|
||
|
public decimal 库存数量 { get; set; }
|
||
|
|
||
|
[StringLength(100)]
|
||
|
public string 零件描述1 { get; set; }
|
||
|
|
||
|
[StringLength(100)]
|
||
|
public string 零件描述2 { get; set; }
|
||
|
}
|
||
|
}
|