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.
34 lines
852 B
34 lines
852 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
||
|
namespace ChangKeTec.Wms.Models.Wms
|
||
|
{
|
||
|
public partial class VIEW_STOCK_QTY
|
||
|
{
|
||
|
[Key]
|
||
|
[Column(Order = 0)]
|
||
|
[StringLength(50)]
|
||
|
public string PartCode { get; set; }
|
||
|
[Key]
|
||
|
[Column(Order = 1)]
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||
|
public System.DateTime LogTime { get; set; }
|
||
|
|
||
|
public decimal qty { get; set; }
|
||
|
|
||
|
public string VendId { get; set; }
|
||
|
|
||
|
public string status { get; set; }
|
||
|
|
||
|
[NotMapped]
|
||
|
public DateTime? BeginTime { get; set; }
|
||
|
|
||
|
[NotMapped]
|
||
|
public DateTime? EndTime { get; set; }
|
||
|
[NotMapped]
|
||
|
public List<string> UserInVendIds { set; get; }
|
||
|
}
|
||
|
}
|