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.
 
 
 
 
 

115 lines
3.2 KiB

using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace CK.SCP.Models.UniApiEntity
{
public partial class xxwms_review_det
{
[Key]
[DisplayName("UID")]
public int xxwms_review_uid { get; set; }
[DisplayName("评审单编号")]
public string xxwms_review_seq { get; set; }
[DisplayName("评审单编号")]
public string xxwms_review_nbr { get; set; }
[DisplayName("关联单号")]
public string xxwms_review_relationnbr { get; set; }
[DisplayName("评审单类型")]
public string xxwms_review_reviewtype { get; set; }
[DisplayName("评审单位置")]
public string xxwms_review_reviewsite { get; set; }
[DisplayName("标签条码")]
public string xxwms_review_barcode { get; set; }
[DisplayName("物料号")]
public string xxwms_review_partcode { get; set; }
[DisplayName("批次")]
public string xxwms_review_batch { get; set; }
[DisplayName("项目")]
public string xxwms_review_projectid { get; set; }
[DisplayName("数量")]
public decimal xxwms_review_qty { get; set; }
[DisplayName("不合格原因")]
public string xxwms_review_badcouse { get; set; }
[DisplayName("评审结果")]
public string xxwms_review_reviewresult { get; set; }
[DisplayName("最终处理部门")]
public string xxwms_review_ultimatedepart { get; set; }
[DisplayName("供应商编码")]
public string xxwms_review_ultimatename { get; set; }
[DisplayName("索赔金额")]
public decimal xxwms_review_claimamount { get; set; }
[DisplayName("操作员")]
public string xxwms_review_opername { get; set; }
[DisplayName("审核日期")]
public DateTime xxwms_review_billdate { get; set; }
[DisplayName("创建时间")]
public DateTime xxwms_review_createtime { get; set; }
[DisplayName("审核时间")]
public DateTime xxwms_review_reviewtime { get; set; }
[StringLength(1)]
[DisplayName("QAD读取")]
public string xxwms_review_qadread { get; set; }
[StringLength(1)]
[DisplayName("wms读取")]
public string xxwms_review_wmsread { get; set; }
[StringLength(1)]
[DisplayName("scm读取")]
public string xxwms_review_scmread { get; set; }
[StringLength(1)]
[DisplayName("mes读取")]
public string xxwms_review_mesread { get; set; }
[DisplayName("创建日期")]
public DateTime? xxwms_review_createdt { get; set; }
[StringLength(18)]
[DisplayName("创建用户")]
public string xxwms_review_createur { get; set; }
[DisplayName("更新日期")]
public DateTime? xxwms_review_updatedt { get; set; }
[StringLength(18)]
[DisplayName("更新用户")]
public string xxwms_review_updateur { get; set; }
[StringLength(20)]
[DisplayName("域")]
public string xxwms_review_domain { get; set; }
[StringLength(20)]
[DisplayName("地点")]
public string xxwms_review_site { get; set; }
}
}