沈泽
2021-11-05 c737780b45a08735555842d044e1b4464284b217
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class Gy_RoutingBillSub
    {
        public long HProcID { get; set; }//工序ID
        public string HProcNo { get; set; }//流水号
        public long HSupID { get; set; }//供应商ID
        public bool HSupFlag { get; set; }//外协标记
        public double HWorkQty { get; set; }//加工数量
        public double HPassRate { get; set; }//良率
        public string HRemark { get; set; }//备注
 
    }
}