1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- namespace app\common\model;
- use think\facade\Db;
- class Membermsgtpl extends BaseModel {
-
-
-
- public function getMembermsgtplList($condition, $field = '*', $order = 'membermt_code asc') {
- return Db::name('membermsgtpl')->field($field)->where($condition)->order($order)->select()->toArray();
- }
-
-
- public function getMembermsgtplInfo($condition, $field = '*') {
- return Db::name('membermsgtpl')->field($field)->where($condition)->find();
- }
-
-
- public function editMembermsgtpl($condition, $update) {
- return Db::name('membermsgtpl')->where($condition)->update($update);
- }
-
-
- }
- ?>
|