26 lines
635 B
26 lines
635 B
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CK.SCP.Models.UniApiEntity
|
|
{
|
|
public partial class xxbom_code_mstr
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(50)]
|
|
public string xxbom_code_table { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(50)]
|
|
public string xxbom_code_value { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[StringLength(50)]
|
|
public string xxbom_code_rmks { get; set; }
|
|
|
|
[StringLength(8)]
|
|
public string xxbom_domain { get; set; }
|
|
}
|
|
}
|
|
|