using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace iWareModel { /// /// RGV是否有库存 /// public enum RgvIsStock { 无空库位 = 1, 有空库位 = 2, 模具号已在库存中 = 3 } }