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.
53 lines
1.3 KiB
53 lines
1.3 KiB
4 years ago
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
||
|
namespace ChangKeTec.Wms.Models.Wms
|
||
|
{
|
||
|
public partial class VIEW_OM_PLAN
|
||
|
{
|
||
|
[Key]
|
||
|
[Column(Order = 0)]
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||
|
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; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string 委外商 { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[Column(Order = 4, TypeName = "money")]
|
||
|
public decimal 计划数 { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[Column(Order = 5, TypeName = "money")]
|
||
|
public decimal 未完成数 { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[Column(Order = 6, TypeName = "money")]
|
||
|
public decimal 完成数 { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string 开始时间 { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string 结束时间 { get; set; }
|
||
|
|
||
|
[StringLength(50)]
|
||
|
public string 备注 { get; set; }
|
||
|
}
|
||
|
}
|