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.
27 lines
662 B
27 lines
662 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_STOCK_VEND
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public long UID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string PartCode { get; set; }
|
|
[StringLength(50)]
|
|
public string PartDesc1 { get; set; }
|
|
|
|
public decimal qty { get; set; }
|
|
|
|
public string VendId { get; set; }
|
|
|
|
[NotMapped]
|
|
public List<string> UserInVendIds { set; get; }
|
|
|
|
}
|
|
}
|
|
|