using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Ropin.Inspection.Model.SearchModel.PRD
{
    public class ProductInfoModel
    {
        public string C_DeviceCode { get; set; }
        public Guid C_CreateBy { get; set; }
        public List<Goods> goods { get; set; }
    }
    public class Goods
    {
        public string C_QRCode { get; set; }
        public int I_Status { get; set; }
    }
}