コード例 #1
0
ファイル: Intercept.php プロジェクト: swdgit/intercept
 public static function getSpecs($printer, $material)
 {
     $spec = DAOFactory::getPrintSpecDAO()->queryByIds($printer, $material);
     return $spec;
 }
コード例 #2
0
ファイル: PrinterSpecAPI.php プロジェクト: swdgit/intercept
 public static function getPrinterSpec($printerMaterialXrefId)
 {
     $printerSpec = DAOFactory::getPrintSpecDAO()->load($printerMaterialXrefId);
     return $printerSpec;
 }