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.
43 lines
1.1 KiB
43 lines
1.1 KiB
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CK.SCP.Models.UniApiEntity
|
|
{
|
|
public partial class xxmes_ctrl
|
|
{
|
|
public int xxmes_ctrl_uid { get; set; }
|
|
|
|
[Key]
|
|
[StringLength(50)]
|
|
public string xxmes_seq { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(50)]
|
|
public string xxmes_table { get; set; }
|
|
|
|
public int xxmes_table_qty { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(1)]
|
|
public string xxmes_qad { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(1)]
|
|
public string xxmes_mes { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxmes_scm { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxmes_wms { get; set; }
|
|
|
|
public string xxmes_rmks { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(8)]
|
|
public string xxmes_domain { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(8)]
|
|
public string xxmes_site { get; set; }
|
|
}
|
|
}
|
|
|