52 lines
1.3 KiB
C#
52 lines
1.3 KiB
C#
namespace SytelineSaAppDataModel
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("edi_co_translate")]
|
|
public partial class EdiCustomerOrderTranslate
|
|
{
|
|
[Key]
|
|
[Column("Id")]
|
|
public int Id { get; set; }
|
|
|
|
[Column("CoEdiOrder")]
|
|
public byte CoEdiOrder { get; set; }
|
|
|
|
[Column("CoRowPointer")]
|
|
public Guid CoRowPointer { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
[Column("CoCoNum")]
|
|
public string CoCoNum { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(1)]
|
|
[Column("CoType")]
|
|
public string CoType { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(15)]
|
|
[Column("CoTakenBy")]
|
|
public string CoTakenBy { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(10)]
|
|
[Column("EdiCoCoNum")]
|
|
public string EdiCoCoNum { get; set; }
|
|
|
|
public int OrdersCount { get; set; }
|
|
|
|
public bool OrderFound { get; set; }
|
|
|
|
public DateTime CreatedDate { get; set; }
|
|
|
|
public string FoundNumbers { get; set; }
|
|
public int ScheduleOrderId { get; set; }
|
|
}
|
|
}
|