| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using Core.Mes.Client.Comm.Attribute;
- namespace Core.StlMes.Client.LgResMgt
- {
- public class LocationInfo : YdmBsLocationEntity
- {
- public decimal? JudgeStoveNoCount { get; set; }
- public decimal? ActCount { get; set; }
- public decimal? ActWeight { get; set; }
-
- //是否有在制品
- public string IsProcess { get; set; }
- }
- }
|