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.
132 lines
3.7 KiB
132 lines
3.7 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CK.SCP.Models.UniApiEntity
|
|
{
|
|
public partial class xxqad_prh_det
|
|
{
|
|
[Key]
|
|
public int xxqad_prh_uid { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(50)]
|
|
public string xxqad_prh_seq { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(20)]
|
|
public string xxqad_prh_receiver { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string xxqad_prh_psnbr { get; set; }
|
|
|
|
public int xxqad_prh_trnbr { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(8)]
|
|
public string xxqad_prh_trtype { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(8)]
|
|
public string xxqad_prh_po_nbr { get; set; }
|
|
|
|
public int xxqad_prh_po_line { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(18)]
|
|
public string xxqad_prh_part { get; set; }
|
|
|
|
public decimal xxqad_prh_qty_rcvd { get; set; }
|
|
|
|
public decimal xxqad_prh_qty_ord { get; set; }
|
|
|
|
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(50)]
|
|
public string xxqad_prh_curr { get; set; }
|
|
|
|
public decimal? xxqad_prh_curr_amt { get; set; }
|
|
|
|
public DateTime xxqad_prh_date_ship { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(8)]
|
|
public string xxqad_prh_site { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(8)]
|
|
public string xxqad_prh_vend { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string xxqad_prh_ware_class { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string xxqad_prh_ware { get; set; }
|
|
|
|
[StringLength(8)]
|
|
public string xxqad_prh_loc { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(2)]
|
|
public string xxqad_prh_po_um { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(2)]
|
|
public string xxqad_prh_loc_um { get; set; }
|
|
|
|
public decimal xxqad_prh_conv { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string xxqad_prh_lot { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string xxqad_prh_vend_batch { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(1)]
|
|
public string xxqad_prh_qadread { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(1)]
|
|
public string xxqad_prh_wmsread { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(1)]
|
|
public string xxqad_prh_scmread { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(1)]
|
|
public string xxqad_prh_mesread { get; set; }
|
|
|
|
public string xxqad_prh_rmks { get; set; }
|
|
|
|
public DateTime xxqad_prh_createdt { get; set; }
|
|
|
|
[StringLength(8)]
|
|
public string xxqad_prh_createur { get; set; }
|
|
|
|
public DateTime? xxqad_prh_updatedt { get; set; }
|
|
|
|
[StringLength(8)]
|
|
public string xxqad_prh_updateur { get; set; }
|
|
|
|
[Required(AllowEmptyStrings = true)]
|
|
[StringLength(8)]
|
|
public string xxqad_prh_domain { get; set; }
|
|
/// <summary>
|
|
/// �ɹ��۸�
|
|
/// </summary>
|
|
public decimal? xxqad_prh_pur_cost { get; set; }
|
|
/// <summary>
|
|
/// �ɱ��۸�
|
|
/// </summary>
|
|
public decimal? xxqad_prh_std_cost { get; set; }
|
|
|
|
/// <summary>
|
|
/// ����
|
|
/// </summary>
|
|
public decimal? xxqad_prh_curr_rate { get; set; }
|
|
|
|
public string xxqad_prh_taxc { get; set; }
|
|
}
|
|
}
|
|
|