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.

73 lines
2.0 KiB

1 year ago
using System;
using System.ComponentModel.DataAnnotations;
namespace CK.SCP.Models.UniApiEntity
{
public partial class xxwms_soiss_det
{
[Key]
public int xxwms_soiss_uid { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxwms_soiss_seq { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(20)]
public string xxwms_soiss_nbr { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(10)]
public string xxwms_soiss_order { get; set; }
public int xxwms_soiss_line { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(18)]
public string xxwms_soiss_part { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxwms_soiss_loc { get; set; }
public DateTime xxwms_soiss_date { get; set; }
public decimal xxwms_soiss_qty { get; set; }
[StringLength(8)]
public string xxwms_soiss_lot { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxwms_soiss_site { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxwms_soiss_domain { get; set; }
[StringLength(1)]
public string xxwms_soiss_qadread { get; set; }
[StringLength(1)]
public string xxwms_soiss_wmsread { get; set; }
[StringLength(1)]
public string xxwms_soiss_scmread { get; set; }
[StringLength(1)]
public string xxwms_soiss_mesread { get; set; }
public string xxwms_soiss_rmks { get; set; }
public DateTime? xxwms_soiss_createdt { get; set; }
[StringLength(18)]
public string xxwms_soiss_createur { get; set; }
public DateTime? xxwms_soiss_updatedt { get; set; }
[StringLength(18)]
public string xxwms_soiss_updateur { get; set; }
}
}