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.
27 lines
709 B
27 lines
709 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
//Ref:
|
|
using System.Data;
|
|
|
|
using QMAPP.BoraUpgrade.DAL;
|
|
using QMAPP.BoraUpgrade.Entity;
|
|
|
|
namespace QMAPP.BoraUpgrade.BLL
|
|
{
|
|
public class ProductMaxCodeBLL
|
|
{
|
|
#region 根据工单ID提取物料列表
|
|
/// <summary>
|
|
/// 根据工单ID提取物料列表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public static int GetProductMaxCode(string MATERIAL_TYPE_CODE, string GenerateDate, string ProductType)
|
|
{
|
|
return QMAPP.BoraUpgrade.DAL.ProductMaxCodeDAL.GetProductMaxCode(MATERIAL_TYPE_CODE, GenerateDate, ProductType);
|
|
}
|
|
#endregion
|
|
}
|
|
}
|
|
|