using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JinYuan.MES.Models
{
///
/// 多个电池进站
///
public class ManyCellInStation
{
///
///
///
public string siteCode { get; set; }
///
///
///
public string lineCode { get; set; }
///
///
///
public string equipNum { get; set; }
///
///
///
public string materialCode { get; set; }
///
///
///
public string userName { get; set; }
///
///
///
public string identification { get; set; }
///
///
///
public string productType { get; set; }
///
/// 电芯条码
///
public List identificationList { get; set; }
///
///
///
public List containerCodeList { get; set; }
}
}