锐腾搅拌上料功能
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
601 B

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using ICSSoft.Frame.Data.DAL;
  6. namespace ICSSoft.Frame.Data.BLL
  7. {
  8. public class ICSLOTONWIPBLL
  9. {
  10. /// <summary>
  11. /// 结束工序
  12. /// </summary>
  13. /// <param name="LotNoEnd">是否结束跟踪单</param>
  14. /// <param name="wip">跟踪单工序实体</param>
  15. /// <param name="conn">套接字</param>
  16. public static void End(bool LotNoEnd, Entity.ICSLOTONWIP wip, string conn)
  17. {
  18. ICSLOTONWIPDAL.End(LotNoEnd, wip, conn);
  19. }
  20. }
  21. }