You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
563 B
C#
28 lines
563 B
C#
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Aucma.Scada.Model.dto
|
|
{
|
|
/// <summary>
|
|
/// 条码绑定扫描类型统计
|
|
/// </summary>
|
|
[SugarTable("CODE_BINDING", "AUCMA_SCADA")]
|
|
public class CodeBindCharts
|
|
{
|
|
/// <summary>
|
|
/// 箱体名称
|
|
/// </summary>
|
|
public string BoxName { get; set; }
|
|
/// <summary>
|
|
/// 数量
|
|
/// </summary>
|
|
public double Amount { get; set; }
|
|
|
|
}
|
|
}
|