yl
2023-12-18 b59b0e3516caee784ab9aa74e5b9dd1dfbffaa2d
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace VueWebCoreApi.Models
{
    public class ScanStartReportData
    {
        public string wo_code { get; set; }  //工单编号
        public string partnumber { get; set; } //产品编码
        public string partname { get; set; } //产品名称
 
        public string partspec { get; set; } //产品规格
        public string seq { get; set; } //当前工序序号
        public string stepcode { get; set; } //当前工序编码
        public string stepname { get; set; } //当前工序
        public string stepprice { get; set; } //当前工序工价
        public string nextstepcode { get; set; } //下道工序编码
        public string nextstepname { get; set; } //下道工序
        public string nextstepprice { get; set; } //下道工序工价
        public string stepdesc { get; set; } //工序描述
        public decimal planqty { get; set; } //任务数量
        public decimal startqty { get; set; } //开工数量
        public decimal noreportqty { get; set; } //未报数量
        public decimal reportqty { get; set; } //已报数量
        public decimal noputqty { get; set; } //未收数量
        public string wkshopcode { get; set; } //车间编码
        public string wkshopname { get; set; } //车间名称
        public string eqpcode { get; set; } //设备编码
        public string eqpname { get; set; } //设备名称
    }
}