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.
 
 
 
 
 

66 lines
1.5 KiB

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using ChangKeTec.Wms.Models.Enums;
using CK.SCP.Models.Enums;
namespace ChangKeTec.Wms.Models.Wms
{
public partial class VIEW_STOCK
{
[NotMapped]
public string => ((StockState)State).ToString();
[Key]
[Column(Order = 0)]
[StringLength(50)]
public string { get; set; }
public string 1 { get; set; }
public string 2 { get; set; }
[Key]
[Column(TypeName = "money",Order=1)]
public decimal? { get; set; }
[StringLength(50)]
public string { get; set; }
[StringLength(50)]
public string { get; set; }
// [Key]
// [Column(Order = 0)]
// [StringLength(50)]
// public string 库位 { get; set; }
[Key]
[StringLength(50)]
[Column(Order = 2)]
public string { get; set; }
[StringLength(50)]
public string { get; set; }
[StringLength(50)]
public string { get; set; }
[StringLength(50)]
public string { get; set; }
[Column(TypeName = "money")]
public decimal? { get; set; }
[Column(TypeName = "money")]
public decimal? { get; set; }
[Column(TypeName = "money")]
public decimal? { get; set; }
[Key]
[Column(Order = 3)]
public int State { get; set; }
}
}