using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace VueWebApi.Models { /// /// 修改报工提交数据类 /// public class UpdateProductReport { public string id { get; set; } //报工记录主表id/外协收料记录主表id public string sbid { get; set; } //报工记录子表id/外协收料记录子表id public string wo_code { get; set; } //生产工单号 public string partnumber { get; set; } //物料编码 public string task_qty { get; set; } //工单数量 public string wkshp_code { get; set; } //车间编号 public string eqp_code { get; set; } //设备编码/外协供应商编码 public string route_code { get; set; } //工艺路线编码 public string step_seq { get; set; } //工序序号 public string step_code { get; set; } //工序编码 public string flw_type { get; set; } //工序属性(Z:自制 W:外协) public string first_choke { get; set; } //是否首道工序 public string last_choke { get; set; } //是否末道工序 public string unprice { get; set; } //工序单价 public string usercode { get; set; } //报工人员编码 public string report_date { get; set; } //报工时间 public string report_qty { get; set; } //报工数量 public string report_dvalue { get; set; } //报工数量差值 public string ng_qty { get; set; } //不良数量 public string ng_dvalue { get; set; } //不良数量差值 public string bad_qty { get; set; } //报废数量 public string bad_dvalue { get; set; } //报废数量差值 public string bad_money { get; set; } //报废金额 public string badmoney_dvalue { get; set; } //报废差值 } }