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.
38 lines
975 B
38 lines
975 B
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CK.SCP.Models.UniApiEntity
|
|
{
|
|
public partial class xxbom_ctrl
|
|
{
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int xxbom_uid { get; set; }
|
|
|
|
[Key]
|
|
[StringLength(50)]
|
|
public string xxbom_seq { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(50)]
|
|
public string xxbom_table { get; set; }
|
|
|
|
public int xxbom_table_qty { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxbom_qad { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxbom_mes { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxbom_scm { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxbom_wms { get; set; }
|
|
|
|
public string xxbom_rmks { get; set; }
|
|
|
|
[StringLength(8)]
|
|
public string xxbom_domain { get; set; }
|
|
}
|
|
}
|
|
|