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.
30 lines
919 B
30 lines
919 B
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CK.SCP.Models.UniApiEntity
|
|
{
|
|
public partial class xxscm_ctrl
|
|
{
|
|
[Key]
|
|
public int xxscm_uid { get; set; }
|
|
[StringLength(50)]
|
|
public string xxscm_seq { get; set; }
|
|
[StringLength(50)]
|
|
public string xxscm_domain { get; set; }
|
|
[StringLength(50)]
|
|
public string xxscm_site { get; set; }
|
|
[StringLength(50)]
|
|
public string xxscm_table { get; set; }
|
|
public int xxscm_table_qty { get; set; }
|
|
[StringLength(50)]
|
|
public string xxscm_qad { get; set; }
|
|
[StringLength(50)]
|
|
public string xxscm_mes { get; set; }
|
|
[StringLength(50)]
|
|
public string xxscm_scm { get; set; }
|
|
[StringLength(50)]
|
|
public string xxscm_wms { get; set; }
|
|
[StringLength(50)]
|
|
public string xxscm_rmks { get; set; }
|
|
}
|
|
}
|
|
|