集成,总结MES功能
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

22 lines
554 B

  1. namespace BPA.MES.Base.Application.Entitys
  2. {
  3. /// <summary>
  4. /// 名 称 :产线料仓
  5. /// 创 建 人 :yangxiao
  6. /// 创建时间 :2023/7/20 16:45:40
  7. /// 描 述 :
  8. /// </summary>
  9. [SugarTable("productline_stocks")]
  10. public class Pztj_LineStocksEntity : DEntityBase
  11. {
  12. /// <summary>
  13. /// 产线Id
  14. /// </summary>
  15. public string LineId { get; set; }
  16. /// <summary>
  17. /// 产线料仓
  18. /// </summary>
  19. public string StockId { get; set; }
  20. }
  21. }