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.
65 lines
1.8 KiB
65 lines
1.8 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CK.SCP.Models.UniApiEntity
|
|
{
|
|
public partial class xxscm_tx_det
|
|
{
|
|
[Key]
|
|
public int xxscm_tx_uid { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(50)]
|
|
public string xxscm_tx_seq { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(8)]
|
|
public string xxscm_tx_domain { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(200)]
|
|
public string xxscm_tx_boxcode { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(20)]
|
|
public string xxscm_tx_nbr { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(50)]
|
|
public string xxscm_tx_vend { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(18)]
|
|
public string xxscm_tx_part { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(50)]
|
|
public string xxscm_tx_batch { get; set; }
|
|
|
|
public decimal xxscm_tx_qty_real { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxscm_tx_qadread { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxscm_tx_wmsread { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxscm_tx_scmread { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxscm_tx_mesread { get; set; }
|
|
|
|
public string xxscm_tx_rmks { get; set; }
|
|
|
|
public DateTime? xxscm_tx_createdt { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string xxscm_tx_createur { get; set; }
|
|
|
|
public DateTime? xxscm_tx_updatedt { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string xxscm_tx_updateur { get; set; }
|
|
}
|
|
}
|
|
|