28 lines
595 B
PHP
28 lines
595 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/**
|
|
* Notes:商品操作日志表
|
|
* Created on: 2021/11/4 14:10
|
|
* Created by: dengbw
|
|
*/
|
|
class Items_oplogs_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_items_oplogs';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
|
|
/**
|
|
* Notes:类型
|
|
* Created on: 2021/11/05 10:31
|
|
* Created by: dengbw
|
|
* @return array
|
|
*/
|
|
public function typeAry()
|
|
{
|
|
return array(1 => '入库', 2 => '调拨', 3 => '出库/开票');
|
|
}
|
|
} |