HTML上做表单页面上的开启和冻结切换以及功能实现
Libérer: 2016-07-25 08:50:18
original
1543 Les gens l'ont consulté
新手献上的
-
/**
- * 联名卡管理
- * @author shendoudou
- *
- */
- import ( '@.Model.Platform.CommonModel' );
- class IcbccardModel extends CommonModel {
- public function findAllCard(){
- $result = $this->select();
- if ($result === false)
- throw new DBException ( $this->getModelName (), $this->getDbError (), $this->getLastSql () );
- return $result;
- }
-
- public function findOneCard($id){
- $map['id']=$id;
- $result = $this->where ($map)->find();
- if ($result === false)
- throw new DBException ( $this->getModelName (), $this->getDbError (), $this->getLastSql () );
- return $result;
- }
-
- public function updateCard($id,$data){
- $map['id']=$id;
- $result = $this->where($map)->save($data);
- if ($result === false)
- throw new DBException ( $this->getModelName (), $this->getDbError (), $this->getLastSql () );
- return $result;
- }
-
- public function deleteCard($id){
- $map['id']=$id;
- $result = $this->where($map)->delete();
- if ($result === false)
- throw new DBException ( $this->getModelName (), $this->getDbError (), $this->getLastSql () );
- return $result;
- }
-
- public function findStatusId($status){
- $map['status']=$status;
- $result = $this->where($map)->field('id')->select();
- if ($result === false)
- throw new DBException ( $this->getModelName (), $this->getDbError (), $this->getLastSql () );
- return $result;
-
- }
-
- public function changeCardStatus($id,$status){
- $map['id']=$id;
- $map['status']=$status;
- $result = $this->save($map);
- if ($result === false)
- throw new DBException ( $this->getModelName (), $this->getDbError (), $this->getLastSql () );
- return $result;
- }
-
-
-
-
-
- }
-
- ?>
复制代码
|
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers articles par auteur
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31