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.

68 lines
1.9 KiB

4 years ago
using ChangKeTec.Wms.Models;
using System;
using System.ComponentModel.DataAnnotations;
namespace CK.SCP.Models.UniApiEntity
{
public partial class xxqad_pprice_det
{
[Key]
public int xxqad_pprice_uid { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
public string xxqad_pprice_seq { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_pprice_list { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(8)]
public string xxqad_pprice_domain { get; set; }
[StringLength(8)]
public string xxqad_pprice_site { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(18)]
public string xxqad_pprice_part { get; set; }
public DateTime? xxqad_pprice_start { get; set; }
public DateTime? xxqad_pprice_end { get; set; }
[StringLength(8)]
public string xxqad_pprice_curr { get; set; }
[StringLength(8)]
public string xxqad_pprice_um { get; set; }
[DecimalPrecision(18, 5)]
public decimal xxqad_pprice_amt { get; set; }
[StringLength(1)]
public string xxqad_pprice_qadread { get; set; }
[StringLength(1)]
public string xxqad_pprice_wmsread { get; set; }
[StringLength(1)]
public string xxqad_pprice_scmread { get; set; }
[StringLength(1)]
public string xxqad_pprice_mesread { get; set; }
public string xxqad_pprice_rmks { get; set; }
public DateTime? xxqad_pprice_createdt { get; set; }
[StringLength(8)]
public string xxqad_pprice_createur { get; set; }
public DateTime? xxqad_pprice_updatedt { get; set; }
[StringLength(8)]
public string xxqad_pprice_updateur { get; set; }
}
}