using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Data;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
|
namespace IStation.DAL
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public partial class ProductInspectionTemplateGrp : CorpTraceDAL_Sorter<Entity.ProductInspectionTemplateGrp>
|
{
|
|
/// <summary>
|
///
|
/// </summary>
|
public override ConnectionConfig ConnectionConfig
|
{
|
get
|
{
|
return ConfigHelper.DefaultConnectionConfig;
|
}
|
}
|
|
|
|
/// <summary>
|
/// 通过ProductType获取
|
/// </summary>
|
/// <param name="ProductType"></param>
|
/// <returns></returns>
|
public List<Entity.ProductInspectionTemplateGrp> GetByProductType(IEnumerable<long> ProductType)
|
{
|
if(ProductType == null || ProductType.Count() == 0)
|
return null;
|
using (var db = new SqlSugarClient(ConnectionConfig))
|
{
|
return db.Queryable<Entity.ProductInspectionTemplateGrp>()
|
.Where(x => ProductType.Contains( x.ProductType)).ToList();
|
}
|
}
|
|
/// <summary>
|
/// ProductType
|
/// </summary>
|
/// <param name="ProductType"></param>
|
/// <returns></returns>
|
public List<Entity.ProductInspectionTemplateGrp> GetByProductType(long ProductType)
|
{
|
using (var db = new SqlSugarClient(ConnectionConfig))
|
{
|
return db.Queryable<Entity.ProductInspectionTemplateGrp>()
|
.Where(x => ProductType == x.ProductType ).ToList();
|
}
|
}
|
|
/// <summary>
|
/// 更新使用状态
|
/// </summary>
|
public virtual bool UpdateUseStatus(long CorpID, long ID, int UseStatus, long UpdateUserID, DateTime UpdateTime)
|
{
|
using (SqlSugarClient db = new SqlSugarClient(ConnectionConfig))
|
{
|
return db.Updateable<Entity.ProductInspectionTemplateGrp>()
|
.SetColumns(x => x.UseStatus == UseStatus)
|
.SetColumns(x => x.UpdateUserID == UpdateUserID)
|
.SetColumns(x => x.UpdateTime == UpdateTime)
|
.Where(x => x.CorpID == CorpID && x.ID == ID)
|
.ExecuteCommandHasChange();
|
}
|
}
|
|
}
|
}
|