-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v3.3.9 20241111 [Frontend Module] (#280)
Recent changelog: - [Helpers: Check to all related column while generate UUID](e45a339) - [Exceptions: Handler: Use more proper function to generate UUID](bc6fd68) - [Resources: kao-logic: Minor updates](ef1ded2)
- Loading branch information
Showing
17 changed files
with
376 additions
and
211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
namespace App\Models; | ||
|
||
use Illuminate\Database\Eloquent\Factories\HasFactory; | ||
use Illuminate\Database\Eloquent\Model; | ||
|
||
class cnvModel extends Model | ||
{ | ||
use HasFactory; | ||
|
||
protected $connection = 'pgsql'; | ||
protected $table = 'pdfConvert'; | ||
protected $primaryKey = 'cnvId'; | ||
protected $keyType = 'string'; | ||
|
||
protected $fillable = [ | ||
'fileName', | ||
'fileSize', | ||
'container', | ||
'imgExtract', | ||
'result', | ||
'isBatch', | ||
'batchName', | ||
'groupId', | ||
'processId', | ||
'procStartAt', | ||
'procEndAt', | ||
'procDuration' | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
namespace App\Models; | ||
|
||
use Illuminate\Database\Eloquent\Factories\HasFactory; | ||
use Illuminate\Database\Eloquent\Model; | ||
|
||
class compressModel extends Model | ||
{ | ||
use HasFactory; | ||
|
||
protected $connection = 'pgsql'; | ||
protected $primaryKey = 'compressId'; | ||
protected $table = 'pdfCompress'; | ||
protected $keyType = 'string'; | ||
|
||
protected $fillable = [ | ||
'fileName', | ||
'fileSize', | ||
'compFileSize', | ||
'compMethod', | ||
'result', | ||
'isBatch', | ||
'batchName', | ||
'groupId', | ||
'processId', | ||
'procStartAt', | ||
'procEndAt', | ||
'procDuration' | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
namespace App\Models; | ||
|
||
use Illuminate\Database\Eloquent\Factories\HasFactory; | ||
use Illuminate\Database\Eloquent\Model; | ||
|
||
class htmlModel extends Model | ||
{ | ||
use HasFactory; | ||
|
||
protected $connection = 'pgsql'; | ||
protected $table = 'pdfHtml'; | ||
protected $primaryKey = 'htmlId'; | ||
protected $keyType = 'string'; | ||
|
||
protected $fillable = [ | ||
'urlName', | ||
'urlMargin', | ||
'urlOrientation', | ||
'urlSinglePage', | ||
'urlSize', | ||
'result', | ||
'groupId', | ||
'processId', | ||
'procStartAt', | ||
'procEndAt', | ||
'procDuration' | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
namespace App\Models; | ||
|
||
use Illuminate\Database\Eloquent\Factories\HasFactory; | ||
use Illuminate\Database\Eloquent\Model; | ||
|
||
class mergeModel extends Model | ||
{ | ||
use HasFactory; | ||
|
||
protected $connection = 'pgsql'; | ||
protected $table = 'pdfMerge'; | ||
protected $primaryKey = 'mergeId'; | ||
protected $keyType = 'string'; | ||
|
||
protected $fillable = [ | ||
'fileName', | ||
'fileSize', | ||
'result', | ||
'isBatch', | ||
'batchName', | ||
'groupId', | ||
'processId', | ||
'procStartAt', | ||
'procEndAt', | ||
'procDuration' | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
|
||
namespace App\Models; | ||
|
||
use Illuminate\Database\Eloquent\Factories\HasFactory; | ||
use Illuminate\Database\Eloquent\Model; | ||
|
||
class splitModel extends Model | ||
{ | ||
use HasFactory; | ||
|
||
protected $connection = 'pgsql'; | ||
protected $table = 'pdfSplit'; | ||
protected $primaryKey = 'splitId'; | ||
protected $keyType = 'string'; | ||
|
||
protected $fillable = [ | ||
'fileName', | ||
'fileSize', | ||
'fromPage', | ||
'toPage', | ||
'customPage', | ||
'fixedPage', | ||
'fixedPageRange', | ||
'mergePDF', | ||
'action', | ||
'result', | ||
'isBatch', | ||
'batchName', | ||
'groupId', | ||
'processId', | ||
'procStartAt', | ||
'procEndAt', | ||
'procDuration' | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?php | ||
|
||
namespace App\Models; | ||
|
||
use Illuminate\Database\Eloquent\Factories\HasFactory; | ||
use Illuminate\Database\Eloquent\Model; | ||
|
||
class watermarkModel extends Model | ||
{ | ||
use HasFactory; | ||
|
||
protected $connection = 'pgsql'; | ||
protected $table = 'pdfWatermark'; | ||
protected $primaryKey = 'watermarkId'; | ||
protected $keyType = 'string'; | ||
|
||
protected $fillable = [ | ||
'fileName', | ||
'fileSize', | ||
'watermarkFontFamily', | ||
'watermarkFontStyle', | ||
'watermarkFontSize', | ||
'watermarkFontTransparency', | ||
'watermarkImage', | ||
'watermarkLayout', | ||
'watermarkMosaic', | ||
'watermarkRotation', | ||
'watermarkStyle', | ||
'watermarkText', | ||
'watermarkPage', | ||
'result', | ||
'isBatch', | ||
'batchName', | ||
'groupId', | ||
'processId', | ||
'procStartAt', | ||
'procEndAt', | ||
'procDuration' | ||
]; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.