45 lines
2.1 KiB
C#
45 lines
2.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Epost.Model
|
|
{
|
|
public class InboundOrdersModel : Base
|
|
{
|
|
int _id = 0;
|
|
string _wmsDocNo = string.Empty;
|
|
string _groupTaskId = string.Empty;
|
|
string _palletId = string.Empty;
|
|
string _spositionCode = string.Empty;
|
|
string _dpositionCode = string.Empty;
|
|
string _priority = string.Empty;
|
|
string _taskType = string.Empty;
|
|
string _userId = string.Empty;
|
|
string _userName = string.Empty;
|
|
string _notes = string.Empty;
|
|
string _warehouseId = string.Empty;
|
|
int _state;
|
|
private Nullable<DateTime> _addtime;
|
|
private Nullable<DateTime> _endtime;
|
|
private Nullable<DateTime> _operationtime;
|
|
public int id { get => _id; set => _id = value; }
|
|
public string wmsDocNo { get => _wmsDocNo; set => _wmsDocNo = value; }
|
|
public string groupTaskId { get => _groupTaskId; set => _groupTaskId = value; }
|
|
public string palletId { get => _palletId; set => _palletId = value; }
|
|
public string spositionCode { get => _spositionCode; set => _spositionCode = value; }
|
|
public string dpositionCode { get => _dpositionCode; set => _dpositionCode = value; }
|
|
public string priority { get => _priority; set => _priority = value; }
|
|
public string taskType { get => _taskType; set => _taskType = value; }
|
|
public string userId { get => _userId; set => _userId = value; }
|
|
public string userName { get => _userName; set => _userName = value; }
|
|
public string notes { get => _notes; set => _notes = value; }
|
|
public string warehouseId { get => _warehouseId; set => _warehouseId = value; }
|
|
public int state { get => _state; set => _state = value; }
|
|
public DateTime? addtime { get => _addtime; set => _addtime = value; }
|
|
public DateTime? endtime { get => _endtime; set => _endtime = value; }
|
|
public DateTime? operationtime { get => _operationtime; set => _operationtime = value; }
|
|
}
|
|
}
|