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.
84 lines
2.3 KiB
84 lines
2.3 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CK.SCP.Models.UniApiEntity
|
|
{
|
|
public partial class xxwms_bk_mstr
|
|
{
|
|
[Key]
|
|
public int xxwms_bk_uid { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(50)]
|
|
public string xxwms_bk_seq { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(20)]
|
|
public string xxwms_bk_nbr { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(18)]
|
|
public string xxwms_bk_part { get; set; }
|
|
|
|
public DateTime xxwms_bk_date { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(8)]
|
|
public string xxwms_bk_site { get; set; }
|
|
|
|
public int xxwms_bk_op { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(8)]
|
|
public string xxwms_bk_line { get; set; }
|
|
|
|
[StringLength(18)]
|
|
public string xxwms_bk_lot { get; set; }
|
|
|
|
public decimal xxwms_bk_qty { get; set; }
|
|
|
|
public decimal xxwms_bk_qty_scrap { get; set; }
|
|
|
|
public decimal xxwms_bk_qty_reject { get; set; }
|
|
|
|
public decimal xxwms_bk_qty_receipt { get; set; }
|
|
|
|
public DateTime xxwms_bk_time { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(8)]
|
|
public string xxwms_bk_loc { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(2)]
|
|
public string xxwms_bk_um { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxwms_bk_qadread { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxwms_bk_wmsread { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxwms_bk_scmread { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string xxwms_bk_mesread { get; set; }
|
|
|
|
public string xxwms_bk_rmks { get; set; }
|
|
|
|
public DateTime? xxwms_bk_createdt { get; set; }
|
|
|
|
[StringLength(18)]
|
|
public string xxwms_bk_createur { get; set; }
|
|
|
|
public DateTime? xxwms_bk_updatedt { get; set; }
|
|
|
|
[StringLength(18)]
|
|
public string xxwms_bk_updateur { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(20)]
|
|
public string xxwms_bk_domain { get; set; }
|
|
}
|
|
}
|
|
|