32 lines
613 B
C#
32 lines
613 B
C#
using System;
|
|||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
using System.Xml.Linq;
|
||
|
|
|
||
|
|
namespace JinYuan.Models
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// CCDNG复投表
|
||
|
|
/// </summary>
|
||
|
|
public class ReInBGearEntity
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 时间
|
||
|
|
/// </summary>
|
||
|
|
|
||
|
|
public string TestTime { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 电芯码
|
||
|
|
/// </summary>
|
||
|
|
public string BarCode { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// CCD结果
|
||
|
|
/// </summary>
|
||
|
|
public string CCDResult { get; set; }
|
||
|
|
}
|
||
|
|
}
|