public static function addPerson_talent($obj_Person_talent)
 {
     $db = config::dbconfig();
     $obj_retresult = new returnResult();
     $obj_Person_talent->TblId = DAL_managePerson_talent::getLastPerson_talentId() + 1;
     $sql = "INSERT INTO tbl_person_talent (TblId,PersonId,TalentId) \n\t\tVALUES (" . common::noSqlInject($obj_Person_talent->TblId) . "," . common::noSqlInject($obj_Person_talent->PersonId) . "," . common::noSqlInject($obj_Person_talent->TalentId) . ");";
     $rs = mysql_query($sql);
     if (mysql_affected_rows() > 0) {
         $obj_retresult->type = 1;
         $obj_retresult->msg = "success";
         $obj_retresult->data = $obj_Person_talent;
     } else {
         $obj_retresult->type = 0;
         $obj_retresult->msg = "failed";
     }
     return $obj_retresult;
 }