27 lines
570 B
C#
27 lines
570 B
C#
using SqlSugar;
|
|||
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace JinYuan.Models
|
||
|
|
{
|
||
|
|
public class Challenge
|
||
|
|
{
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 挑战件条码
|
||
|
|
/// </summary>
|
||
|
|
public String ChallengeBarCode { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// 电芯信息
|
||
|
|
/// </summary>
|
||
|
|
public String CodeMessage { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// 焊前/焊后CCD
|
||
|
|
/// </summary>
|
||
|
|
public String WeldingCCD { get; set; }
|
||
|
|
}
|
||
|
|
}
|