LocationInfo.cs 493 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using Core.Mes.Client.Comm.Attribute;
  7. namespace Core.StlMes.Client.LgResMgt
  8. {
  9. public class LocationInfo : YdmBsLocationEntity
  10. {
  11. public decimal? JudgeStoveNoCount { get; set; }
  12. public decimal? ActCount { get; set; }
  13. public decimal? ActWeight { get; set; }
  14. //是否有在制品
  15. public string IsProcess { get; set; }
  16. }
  17. }