1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace VueWebApi.Models
{
    /// <summary>
    /// 修改报工提交数据类
    /// </summary>
    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 usergroup_code { get; set; }  //用户组编码
        public string usercode { get; set; }  //报工人员编码
        public string report_date { get; set; }  //报工时间
        public string report_qty { get; set; }  //报工数量
        public string ng_qty { get; set; }  //不良数量
        public string bad_qty { get; set; }  //报废数量
        public string bad_money { get; set; }  //报废金额
    }
}