21 lines
391 B
C#
21 lines
391 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
|
|
{
|
|
public class CheckPutInput
|
|
{
|
|
public string point_code { get; set; }
|
|
public int type { get; set; }
|
|
}
|
|
public enum exectype
|
|
{
|
|
放 = 0,
|
|
取 = 1
|
|
}
|
|
}
|