BaoKai_202508_WebApi_Jingwa.../API/Model/MovedataModel.cs

34 lines
678 B
C#
Raw Normal View History

2025-08-24 22:23:34 +08:00
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; }
}
}
}