mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-24 03:15:32 +08:00
16 lines
356 B
PHP
16 lines
356 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class ome_mdl_group_ops extends dbeav_model{
|
||
|
||
/*
|
||
*
|
||
*/
|
||
function del_group_ops($op_id,$group_id){
|
||
$this->db->exec("delete from sdb_ome_group_ops WHERE op_id='$op_id' AND group_id='$group_id'");
|
||
}
|
||
}
|
||
?>
|