天津投入产出系统后端
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.
 
 
 
 
 
 

24 lines
719 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using QMAPP.DAL;
using QMFrameWork.Data;
using QMAPP.FJC.Entity.FwMark;
namespace QMAPP.FJC.DAL.Basic
{
public class MarkAddrDAL:BaseDAL
{
public List<FJC.Entity.FwMark.FWMarkParameter> GetMarkOnCell(string workcell)
{
string DarkSql = @"select * from T_FA_MARKADDR where
WORKPLACECODE='" + workcell + "'";
using (IDataSession session = AppDataFactory.CreateMainSession())
{
return session.GetList<FWMarkParameter>(DarkSql, new List<DataParameter>().ToArray()).ToList<FWMarkParameter>();
}
}
}
}