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.
236 lines
9.8 KiB
236 lines
9.8 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace ICSSoft.Frame.Data.Entity
|
|
{
|
|
//25,acs 20,aps
|
|
//字段名称 字段含义 实例 字段名称 字段含义 实例
|
|
//data_m944 不良起源 Customer客户 data_m700 不良起源 Customer 客户
|
|
//data_m945 不合格单号 123 data_m841 不合格单号 123
|
|
//data_m947 供应商代码 Ce343 data_m703 供应商代码 Ce343
|
|
//data_m946 客户代码 2R01 data_m702 客户代码 2R01
|
|
//data_m948 内部工序 123 data_m704 内部工序 123
|
|
//data_m949 开单日期 2021-9-9 data_m705 开单日期 2021-9-9
|
|
//data_m950 批号 123 data_m706 批号 123
|
|
//data_m951 图纸号 123 data_m707 图纸号 123
|
|
//data_m952 版本号 123 data_m708 版本号 123
|
|
//data_m953 项目号 123 data_m709 项目号 123
|
|
//data_m954 物料编号 123 data_m850 物料编号 123
|
|
//data_m955 产品阶段 打样 data_m710 产品阶段 打样
|
|
//data_m956 材料号 123 data_m711 材料号 123
|
|
//data_m957 订单数量 123 data_m712 订单数量 123
|
|
//data_m958 检验数量 123 data_m865 检验数量 123
|
|
//data_m959 拒收数量 123 data_m713 拒收数量 123
|
|
//data_m960 不合格责任方 Customer 客户 data_m714 不合格责任方 Customer 客户
|
|
//data_m961 不合格描述 士大夫 data_m715 不合格描述 士大夫
|
|
//data_m962 开单人姓名 张三 data_m811 开单人姓名 张三
|
|
//data_m963 开单人日期 2021-9-9 data_m718 开单人日期 2021-9-9
|
|
|
|
public class FormICSOAACSModel
|
|
{
|
|
public string FLOW_ID { get; set; }
|
|
public List<FormICSOAACSDetailModel> FLOW_INFO { get; set; }
|
|
}
|
|
|
|
public class FormICSOAACSDetailModel
|
|
{
|
|
[JsonProperty("data_m700")]
|
|
public string data_m944 { get; set; }
|
|
[JsonProperty("data_m841")]
|
|
public string data_m945 { get; set; }
|
|
[JsonProperty("data_m703")]
|
|
public string data_m947 { get; set; }
|
|
[JsonProperty("data_m702")]
|
|
public string data_m946 { get; set; }
|
|
[JsonProperty("data_m704")]
|
|
public string data_m948 { get; set; }
|
|
[JsonProperty("data_m705")]
|
|
public string data_m949 { get; set; }
|
|
[JsonProperty("data_m706")]
|
|
public string data_m950 { get; set; }
|
|
[JsonProperty("data_m707")]
|
|
public string data_m951 { get; set; }
|
|
[JsonProperty("data_m708")]
|
|
public string data_m952 { get; set; }
|
|
[JsonProperty("data_m709")]
|
|
public string data_m953 { get; set; }
|
|
[JsonProperty("data_m850")]
|
|
public string data_m954 { get; set; }
|
|
[JsonProperty("data_m710")]
|
|
public string data_m955 { get; set; }
|
|
[JsonProperty("data_m711")]
|
|
public string data_m956 { get; set; }
|
|
[JsonProperty("data_m712")]
|
|
public string data_m957 { get; set; }
|
|
[JsonProperty("data_m865")]
|
|
public string data_m958 { get; set; }
|
|
[JsonProperty("data_m713")]
|
|
public string data_m959 { get; set; }
|
|
[JsonProperty("data_m714")]
|
|
public string data_m960 { get; set; }
|
|
[JsonProperty("data_m715")]
|
|
public string data_m961 { get; set; }
|
|
[JsonProperty("data_m811")]
|
|
public string data_m962 { get; set; }
|
|
[JsonProperty("data_m718")]
|
|
public string data_m963 { get; set; }
|
|
}
|
|
|
|
|
|
public class FormICSOAAPSModel
|
|
{
|
|
public string FLOW_ID { get; set; }
|
|
public List<FormICSOAAPSDetailModel> FLOW_INFO { get; set; }
|
|
}
|
|
|
|
public class FormICSOAAPSDetailModel
|
|
{
|
|
public string data_m700 { get; set; }
|
|
public string data_m841 { get; set; }
|
|
public string data_m703 { get; set; }
|
|
public string data_m702 { get; set; }
|
|
public string data_m704 { get; set; }
|
|
public string data_m705 { get; set; }
|
|
public string data_m706 { get; set; }
|
|
public string data_m707 { get; set; }
|
|
public string data_m708 { get; set; }
|
|
public string data_m709 { get; set; }
|
|
public string data_m850 { get; set; }
|
|
public string data_m710 { get; set; }
|
|
public string data_m711 { get; set; }
|
|
public string data_m712 { get; set; }
|
|
public string data_m865 { get; set; }
|
|
public string data_m713 { get; set; }
|
|
public string data_m714 { get; set; }
|
|
public string data_m715 { get; set; }
|
|
public string data_m811 { get; set; }
|
|
public string data_m718 { get; set; }
|
|
}
|
|
|
|
|
|
public class EntiyNcr2OA
|
|
{
|
|
public string FLOW_ID { get; set; }
|
|
public List<EntiyNcr2OADetail> FLOW_INFO { get; set; }
|
|
}
|
|
public class EntiyNcr2OADetail
|
|
{
|
|
public string 不良起源 { get; set; }
|
|
public string 不合格单号 { get; set; }
|
|
public string 供应商代码 { get; set; }
|
|
public string 客户代码 { get; set; }
|
|
public string 内部工序 { get; set; }
|
|
public string 开单日期 { get; set; }
|
|
public string 批号 { get; set; }
|
|
public string 图纸号 { get; set; }
|
|
public string 版本号 { get; set; }
|
|
public string 项目号 { get; set; }
|
|
public string 物料编号 { get; set; }
|
|
public string 产品阶段 { get; set; }
|
|
public string 材料号 { get; set; }
|
|
public decimal 订单数量 { get; set; }
|
|
public decimal 检验数量 { get; set; }
|
|
public decimal 拒收数量 { get; set; }
|
|
public string 不合格责任方 { get; set; }
|
|
public string 不合格描述 { get; set; }
|
|
public string 开单人id { get; set; }
|
|
public string 开单人日期 { get; set; }
|
|
[JsonProperty("data_m1622")]
|
|
public string 工序1 { get; set; }
|
|
[JsonProperty("data_m1623")]
|
|
public string 工序2 { get; set; }
|
|
[JsonProperty("data_m1624")]
|
|
public string 工序3 { get; set; }
|
|
[JsonProperty("data_m1625")]
|
|
public string 工序4 { get; set; }
|
|
[JsonProperty("data_m1626")]
|
|
public string 工序5 { get; set; }
|
|
[JsonProperty("data_m1627")]
|
|
public string 工序6 { get; set; }
|
|
[JsonProperty("data_m1628")]
|
|
public string 工序7 { get; set; }
|
|
[JsonProperty("data_m1629")]
|
|
public string 工序8 { get; set; }
|
|
[JsonProperty("data_m1630")]
|
|
public string 工序9 { get; set; }
|
|
[JsonProperty("data_m1631")]
|
|
public string 工序10 { get; set; }
|
|
[JsonProperty("data_m1632")]
|
|
public string 工序11 { get; set; }
|
|
[JsonProperty("data_m1633")]
|
|
public string 工序12 { get; set; }
|
|
[JsonProperty("data_m1634")]
|
|
public string 工序13 { get; set; }
|
|
[JsonProperty("data_m1635")]
|
|
public string 工序14 { get; set; }
|
|
[JsonProperty("data_m1636")]
|
|
public string 工序15 { get; set; }
|
|
[JsonProperty("data_m1637")]
|
|
public string 工序16 { get; set; }
|
|
[JsonProperty("data_m1638")]
|
|
public string 工序17 { get; set; }
|
|
[JsonProperty("data_m1639")]
|
|
public string 工序18 { get; set; }
|
|
[JsonProperty("data_m1640")]
|
|
public string 工序19 { get; set; }
|
|
[JsonProperty("data_m1641")]
|
|
public string 工序20 { get; set; }
|
|
[JsonProperty("data_m1642")]
|
|
public string 工序21 { get; set; }
|
|
[JsonProperty("data_m1643")]
|
|
public string 工序22 { get; set; }
|
|
[JsonProperty("data_m1644")]
|
|
public string 工序23 { get; set; }
|
|
[JsonProperty("data_m1645")]
|
|
public string 工序24 { get; set; }
|
|
[JsonProperty("data_m1646")]
|
|
public string 工序25 { get; set; }
|
|
[JsonProperty("data_m1647")]
|
|
public string 工序26 { get; set; }
|
|
[JsonProperty("data_m1648")]
|
|
public string 工序27 { get; set; }
|
|
[JsonProperty("data_m1649")]
|
|
public string 工序28 { get; set; }
|
|
[JsonProperty("data_m1650")]
|
|
public string 工序29 { get; set; }
|
|
|
|
}
|
|
public class EntiyNcr2OADetail2
|
|
{
|
|
public string 不良起源 { get; set; }
|
|
public string 不合格单号 { get; set; }
|
|
public string 供应商代码 { get; set; }
|
|
public string 客户代码 { get; set; }
|
|
public string 内部工序 { get; set; }
|
|
public string 开单日期 { get; set; }
|
|
public string 批号 { get; set; }
|
|
public string 图纸号 { get; set; }
|
|
public string 版本号 { get; set; }
|
|
public string 项目号 { get; set; }
|
|
public string 物料编号 { get; set; }
|
|
public string 产品阶段 { get; set; }
|
|
public string 材料号 { get; set; }
|
|
public decimal 订单数量 { get; set; }
|
|
public decimal 检验数量 { get; set; }
|
|
public decimal 拒收数量 { get; set; }
|
|
public string 不合格责任方 { get; set; }
|
|
public string 不合格描述 { get; set; }
|
|
public string 开单人id { get; set; }
|
|
public string 开单人日期 { get; set; }
|
|
public bool? 批量 { get; set; }
|
|
public string 不良原因 { get; set; }
|
|
}
|
|
|
|
public class ResOP
|
|
{
|
|
public string LotNo { get; set; }
|
|
public string OP { get; set; }
|
|
public string OPSEQ { get; set; }
|
|
public string OPCODE { get; set; }
|
|
public string OPAtrr { get; set; }
|
|
public string CtrlType { get; set; }
|
|
}
|
|
}
|