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.

41 lines
876 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SlnMesnac.LabelPrint.Model
{
public class BaseLabelInfo
{
public dynamic label { get; set; }
/// <summary>
/// 产品类型
/// </summary>
public string productType { get; set; }
public object column_A { get; set; }
public object column_B { get; set; }
public object column_C { get; set; }
public object column_D { get; set; }
public object column_E { get; set; }
public object column_F { get; set; }
public object column_G { get; set; }
public object column_H { get; set; }
public object column_I { get; set; }
public object column_J { get; set; }
public DateTime recordTime { get; set; }
}
}