40 lines
960 B
40 lines
960 B
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
public partial class VIEW_STORE_WHSE
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
public int UID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int 状态 { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[StringLength(50)]
|
|
public string 仓库编号 { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
[StringLength(50)]
|
|
public string 仓库名称 { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 4)]
|
|
[StringLength(200)]
|
|
public string 仓库地址 { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 5)]
|
|
[StringLength(50)]
|
|
public string 仓库类型 { get; set; }
|
|
|
|
[StringLength(500)]
|
|
public string 备注 { get; set; }
|
|
}
|
|
}
|
|
|