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.
91 lines
2.3 KiB
91 lines
2.3 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CK.SCP.Models.UniApiEntity
|
|
{
|
|
public partial class xxqad_repsch_det
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
public int xxqad_repsch_uid { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(50)]
|
|
public string xxqad_repsch_seq { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[StringLength(8)]
|
|
public string xxqad_repsch_domain { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
[StringLength(8)]
|
|
public string xxqad_repsch_site { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 4)]
|
|
[StringLength(8)]
|
|
public string xxqad_repsch_line { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 5)]
|
|
[StringLength(18)]
|
|
public string xxqad_repsch_part { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 6)]
|
|
public DateTime xxqad_repsch_duedate { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string xxqad_repsch_shift { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 7)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int xxqad_repsch_qty { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 8)]
|
|
[StringLength(1)]
|
|
public string xxqad_repsch_qadread { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 9)]
|
|
[StringLength(1)]
|
|
public string xxqad_repsch_mesread { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 10)]
|
|
[StringLength(1)]
|
|
public string xxqad_repsch_scmread { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 11)]
|
|
[StringLength(1)]
|
|
public string xxqad_repsch_wmsread { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string xxqad_repsch_rmks { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 12)]
|
|
public DateTime xxqad_repsch_createdt { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 13)]
|
|
[StringLength(50)]
|
|
public string xxqad_repsch_createur { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 14)]
|
|
public DateTime xxqad_repsch_updatedt { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 15)]
|
|
[StringLength(50)]
|
|
public string xxqad_repsch_updateur { get; set; }
|
|
}
|
|
}
|
|
|