23 lines
369 B
PHP
23 lines
369 B
PHP
<?php
|
|
/**
|
|
* Created by CS medien- & kommunikationssysteme.
|
|
* @author Christian Steinle
|
|
* @date 15.10.2016
|
|
*
|
|
* @copyright CS medien- & kommunikationssysteme (http://www.steinle-computer.de)
|
|
*/
|
|
|
|
namespace Model;
|
|
|
|
|
|
use Helper\Database;
|
|
|
|
class SublineModel extends Database
|
|
{
|
|
const TBL_NAME = TBL_SUBLINE;
|
|
|
|
const PRIMARY_KEY = 'sublineID';
|
|
|
|
const ORDER_BY = '';
|
|
|
|
} |