示例#1
0
 public function showNote($i_orderID)
 {
     $objThis_m = new c_data();
     $objThis_v = new c_view();
     $s_sql = "select noteID, orderID, noteBy, noteDate, note from braddoro.dyn_eve_mining_order_note where orderID = {$i_orderID} order by noteDate desc";
     $q_data = $objThis_m->getData($s_sql);
     return $objThis_v->showNote($q_data);
 }