Commit fb8995ec authored by Sarun Mungthanya's avatar Sarun Mungthanya
Browse files

main

parents
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SysWorkflowFlow extends Model
{
protected $table = 'sys_workflow_flow';
protected $fillable = [
'FID',
'FLOW',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SysWorkflowLink extends Model
{
protected $table = 'sys_workflow_link';
protected $fillable = [
'ID',
'STAGEID',
'NEXTSTATGE',
'WF_CONDITION',
'WF_LINK_TYPE',
'WF_LINK_DESC',
'WF_PERMIT',
'WFID',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SysWorkflowLinktype extends Model
{
protected $table = 'sys_workflow_linktype';
protected $fillable = [
'WFLTID',
'WFLTNAME',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SysWorkflowStage extends Model
{
protected $table = 'sys_workflow_stage';
protected $fillable = [
'STID',
'STAGE',
'FLOWID',
'PERMIT',
'STAGEHTX',
'NX',
'NY',
'NZ',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TabCompany extends Model
{
protected $table = 'tab_company';
protected $fillable = [
'CID',
'COMPANY_TAXID',
'COMPANY_CODE',
'FACTORYNO',
'COMPANYNAME_TH',
'COMPANYNAME_EN',
'ADDRESS_STREET',
'DISTRICT',
'SUB_PROVINCE',
'PROVINCE',
'POSTCODE',
'COUNTRYCODE',
'PHONE',
'FAX',
'CONTACT_NAME',
'CONTACT_LASTNAME',
'CONTACT_EMAIL',
'CONTACT_PHONE',
'TYPEID',
'CREATEDATE',
'LASTUPDATE',
'CERFILE',
'CERPASS',
'GW_ORG',
'SERVER_KEY',
'PAYMENT_USER',
'PAYMENT_PASS',
'PAYMENT_ORG',
'BUCODE',
'TOKEN_SIGN',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TabCompanymenu extends Model
{
protected $table = 'tab_companymenu';
protected $fillable = [
'CMID',
'TYPEID',
'MID',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TabCompanytype extends Model
{
protected $table = 'tab_companytype';
protected $fillable = [
'TYPEID',
'TYPENAME',
'DESCRIPTION',
'OPT1',
'OPT2',
'OPT3',
'OPT4',
'OPT5',
'OPT6',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TabDifflabel extends Model
{
protected $table = 'tab_difflabel';
protected $fillable = [
'did',
'skey',
'diffstr',
'diffdate',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TabEasyclickTransaction extends Model
{
protected $table = 'tab_easyclick_transaction';
protected $fillable = [
'id',
'serverkey',
'filesize',
'referenceNo',
'transfer_time',
'username',
'templatename',
'documenttype',
'senttocentre',
'senttocentretime',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TabGoogle extends Model
{
protected $table = 'tab_google';
protected $fillable = [
'GUID',
'GSERVERID',
'GUSER',
'GPASS',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TabGroup extends Model
{
protected $table = 'tab_group';
protected $fillable = [
'GID',
'GROUPNAME',
'CPID',
'ADMIN_GROUP',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TabGroupmenu extends Model
{
protected $table = 'tab_groupmenu';
protected $fillable = [
'GMID',
'GID',
'MID',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TabGwstatus extends Model
{
protected $table = 'tab_gwstatus';
protected $fillable = [
'idtab_gwstatus',
'gateway',
'status',
'lastUpdate',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TabIm extends Model
{
protected $table = 'tab_im';
protected $fillable = [
'IMID',
'IMFrom',
'IMTo',
'IMAck',
'IMMsg',
'IMStat',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TabMenu extends Model
{
protected $table = 'tab_menu';
protected $fillable = [
'MID',
'MENUNAME',
'DETAIL',
'MTYPE',
'SUPERID',
'DATE_CREATED',
'MENUORDER',
'MANU_DESCRIPTION',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TabParameterImg extends Model
{
protected $table = 'tab_parameter_img';
protected $fillable = [
'imgid',
'parameterCode',
'imgdetail',
'category',
'uploadBy',
'uploadTime',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TabParameterInfo extends Model
{
protected $table = 'tab_parameter_info';
protected $fillable = [
'infoid',
'parameterName',
'detail',
'pageCode',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TabPatchFile extends Model
{
protected $table = 'tab_patch_file';
protected $fillable = [
'fid',
'ptid',
'file_name',
'file_data',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TabRole extends Model
{
protected $table = 'tab_role';
protected $fillable = [
'ROLEID',
'ROLENAME',
'DEPEND_ON_ROLE',
'ROLE_DESCRIPTION',
'REQUIRED_SERVICE',
'OnConfigure',
'OnSaveConfig',
'OnAssign',
'OnDeassign',
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TabSample extends Model
{
protected $table = 'tab_sample';
protected $fillable = [
'ID',
'FNAME',
];
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment