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.
35 lines
861 B
35 lines
861 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
public partial class VIEW_PRODUCT_DETAIL
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public long UID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string PartCode { get; set; }
|
|
|
|
public decimal qty { get; set; }
|
|
|
|
public System.DateTime? LogTime { get; set; }
|
|
|
|
public string status { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string VendId { get; set; }
|
|
|
|
[NotMapped]
|
|
public DateTime? BeginTime { get; set; }
|
|
|
|
[NotMapped]
|
|
public DateTime? EndTime { get; set; }
|
|
|
|
[NotMapped]
|
|
public List<string> UserInVendIds { set; get; }
|
|
}
|
|
}
|
|
|