/// <summary>
 /// 查询所有夹具定义
 /// </summary>
 /// <param name="tongsDefinition"></param>
 /// <returns>库存记录列表</returns>
 public IList <TongsDefinition> selectAllTongsDefinitions(TongsDefinition tongsDefinition)
 {
     return(BaseDao.QueryForList <TongsDefinition>("SelectAllTongsDefinitions", tongsDefinition));
 }
Exemple #2
0
 /// <summary>
 /// 查询所有库存记录
 /// </summary>
 ///
 /// <returns>库存记录列表</returns>
 public IList <InventoryRecord> selectAllInventoryRecords(InventoryRecord inventoryRecord)
 {
     return(BaseDao.QueryForList <InventoryRecord>("SelectAllInventoryRecords", inventoryRecord));
 }
Exemple #3
0
 /// <summary>
 /// 查看所有生产线信息
 /// </summary>
 /// <param name="productionLine"></param>
 /// <returns>生产线信息列表</returns>
 public IList <ProductionLine> selectAllProductionLines(ProductionLine productionLine)
 {
     return(BaseDao.QueryForList <ProductionLine>("SelectAllProductionLines", productionLine));
 }
Exemple #4
0
 /// <summary>
 /// 查询所有角色权限
 /// </summary>
 /// <param name="role"></param>
 /// <returns>角色权限列表</returns>
 public IList <Role> selectAllRoles(Role role)
 {
     return(BaseDao.QueryForList <Role>("SelectAllRoles", role));
 }
 /// <summary>
 /// 查询处于同一部门的所有用户
 /// </summary>
 /// <param name="user"></param>
 /// <returns>用户列表</returns>
 public IList <User> selectUsersByWorkcell(User user)
 {
     return(BaseDao.QueryForList <User>("SelectAllUsers", user));
 }
Exemple #6
0
 /// <summary>
 /// 查询所有采购信息
 /// </summary>
 /// <param name="purchase"></param>
 /// <returns>采购记录列表</returns>
 public IList <Purchase> selectAllPurchases(Purchase purchase)
 {
     return(BaseDao.QueryForList <Purchase>("SelectAllPurchases", purchase));
 }
Exemple #7
0
 /// <summary>
 /// 查询所有部门信息
 /// </summary>
 /// <param name="workcell"></param>
 /// <returns>部分信息列表</returns>
 public IList <Workcell> selectAllWorkcells(Workcell workcell)
 {
     return(BaseDao.QueryForList <Workcell>("SelectAllWorkcells", workcell));
 }
Exemple #8
0
 /// <summary>
 /// 插入未完成维修记录
 /// </summary>
 /// <param name="repairRecord"></param>
 /// <returns>未完成维修记录列表</returns>
 public IList <RepairRecord> selectAllNotCompleteRecords(RepairRecord repairRecord)
 {
     return(BaseDao.QueryForList <RepairRecord>("SelectAllNotCompleteRecords", repairRecord));
 }
Exemple #9
0
 /// <summary>
 /// 查看所有日志
 /// </summary>
 /// <param name="log"></param>
 /// <returns></returns>
 public IList <Log> selectAllLogs(Log log)
 {
     return(BaseDao.QueryForList <Log>("SelectAllLogs", log));
 }
Exemple #10
0
 /// <summary>
 /// 查询所有报废信息
 /// </summary>
 /// <param name="scrap"></param>
 /// <returns>夹具报废记录列表</returns>
 public IList <Scrap> selectAllScraps(Scrap scrap)
 {
     return(BaseDao.QueryForList <Scrap>("SelectAllScraps", scrap));
 }
Exemple #11
0
 /// <summary>
 /// 查询所有夹具实体内容
 /// </summary>
 /// <param name="tongsEntity"></param>
 /// <returns>夹具实体列表</returns>
 public IList <TongsEntity> selectAllTongsEntitys(TongsEntity tongsEntity)
 {
     return(BaseDao.QueryForList <TongsEntity>("SelectAllTongsEntitys", tongsEntity));
 }