34 lines
678 B
C#
34 lines
678 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Web;
|
|||
|
|
|
|||
|
|
namespace webapi.Modle
|
|||
|
|
{
|
|||
|
|
public class MovedataModel
|
|||
|
|
{
|
|||
|
|
string _location_id = string.Empty;
|
|||
|
|
string _outbarcode = string.Empty;
|
|||
|
|
string _store = string.Empty;
|
|||
|
|
|
|||
|
|
public string Location_Id
|
|||
|
|
{
|
|||
|
|
get { return _location_id; }
|
|||
|
|
set { _location_id = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public string OutBarcode
|
|||
|
|
{
|
|||
|
|
get { return _outbarcode; }
|
|||
|
|
set { _outbarcode = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public string Store
|
|||
|
|
{
|
|||
|
|
get { return _store; }
|
|||
|
|
set { _store = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|