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.
59 lines
2.0 KiB
59 lines
2.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CK.SCP.Models.ScpEntity
|
|
{
|
|
public partial class PURSubcontractors
|
|
{
|
|
[Key]
|
|
public int di_batchno { get; set; }
|
|
public string purDocNO { get; set; }
|
|
public string purDocItemNO { get; set; }
|
|
|
|
public string ordType { get; set; }
|
|
|
|
public DateTime? docDate { get; set; }
|
|
|
|
public string returnsItem { get; set; }
|
|
public string sizecoL { get; set; }
|
|
public string purDocItemCtg { get; set; }
|
|
public string plant { get; set; }
|
|
public string purOrg { get; set; }
|
|
public string companyCode { get; set; }
|
|
public string mtlNO { get; set; }
|
|
public string shortText { get; set; }
|
|
public decimal quantity { get; set; }
|
|
public DateTime? itemDeliveryDate { get; set; }
|
|
public decimal price { get; set; }
|
|
public string baseUnitMeasure { get; set; }
|
|
public string ordPriceUnit { get; set; }
|
|
|
|
public string vendorNO { get; set; }
|
|
public string responsibleSalesperson { get; set; }
|
|
public string storeLocation { get; set; }
|
|
public string purGrp { get; set; }
|
|
public string phone { get; set; }
|
|
public string ctype { get; set; }
|
|
public string remark { get; set; }
|
|
public DateTime? createdDate { get; set; }
|
|
public string createdBy { get; set; }
|
|
public DateTime? di_updatetime { get; set; }
|
|
public string updatedBy { get; set; }
|
|
public string measureBaseUnit { get; set; }
|
|
public string groupWareMaterielNO { get; set; }
|
|
public string groupWarePlant { get; set; }
|
|
public DateTime? compRequireDate { get; set; }
|
|
public decimal COMPONQUANTITY { get; set; }
|
|
public string di_message { get; set; }
|
|
public string di_status { get; set; }
|
|
public DateTime? di_writeTime { get; set; }
|
|
public string outPurDocNO { get; set; }
|
|
public string outPurDocItemNO { get; set; }
|
|
public string alternativeBOM { get; set; }
|
|
}
|
|
}
|
|
|
|
|