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.
30 lines
780 B
C#
30 lines
780 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Security.Principal;
|
|
using System.Text;
|
|
|
|
namespace SlnMesnac.RfidUpload.Model
|
|
{
|
|
|
|
[SugarTable("BATCH_NO_INFO")]
|
|
public class BatchNoInfo
|
|
{
|
|
|
|
[SugarColumn(ColumnName = "id")]
|
|
public string Id { get; set; }
|
|
|
|
// 用于存储调拨单号、送货单号、封发计划编号
|
|
[SugarColumn(ColumnName = "code")]
|
|
public string code { get; set; }
|
|
|
|
// 用于存储调拨单号、送货单号、封发计划编号当前的上传编号1开头
|
|
[SugarColumn(ColumnName = "batchNo")]
|
|
public int batchNo { get; set; }
|
|
|
|
//时间
|
|
[SugarColumn(ColumnName = "recordtime")]
|
|
public string RecordTime { get; set; }
|
|
}
|
|
}
|