using System;
|
using System.Collections.Generic;
|
using System.ComponentModel;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using Tiger.Model.Minsun;
|
|
namespace Tiger.Model
|
{
|
|
public class LocationTransferReturn
|
{
|
public string SN { get; set; }
|
public string ItemCode { get; set; }
|
public string ItemName { get; set; }
|
public double Qty { get; set; }
|
public string LocationCode { get; set; }
|
}
|
|
}
|