change CLITool...1

This commit is contained in:
최준흠 2024-05-15 09:57:18 +09:00
parent 5d1e66f131
commit 2c1840433e
3 changed files with 12 additions and 12 deletions

View File

@ -20,7 +20,7 @@ class Account extends API
echo __FUNCTION__ . "에서 호출:" . $this->getAccountModel()->getLastQuery(); echo __FUNCTION__ . "에서 호출:" . $this->getAccountModel()->getLastQuery();
return $entitys; return $entitys;
} }
final public function execute($page_limit = 0, int $auth_uid = 0) final public function execute(int $auth_uid = 0, $page_limit = 0)
{ {
try { try {
//transation처리 //transation처리

View File

@ -21,7 +21,7 @@ class Zone extends API
Log::add("error", __FUNCTION__ . "에서 호출:" . $this->getZoneModel()->getLastQuery()); Log::add("error", __FUNCTION__ . "에서 호출:" . $this->getZoneModel()->getLastQuery());
return $entitys; return $entitys;
} }
final public function record(int $page_limit = 0, string $account_uid = '') final public function record(string $account_uid = '', $page_limit = 0,)
{ {
try { try {
//transation처리 //transation처리

View File

@ -8,11 +8,11 @@
<table> <table>
<tr> <tr>
<td width="15%" nowrap style="text-align:right; color:white;">계정</td> <td width="15%" nowrap style="text-align:right; color:white;">계정</td>
<td width="*" style="text-align:left;"><input type="text" id="id" name="id" value="<?= old('id')?>"></td> <td width="*" style="text-align:left;"><input type="text" id="id" name="id" value="<?= old('id', DEFAULT_EMPTY) ?>"></td>
</tr> </tr>
<tr> <tr>
<td width="15%" nowrap style="text-align:right; color:white;">암호</td> <td width="15%" nowrap style="text-align:right; color:white;">암호</td>
<td width="*" style="text-align:left;"><input type="password" id="passwd" name="passwd" value="<?= old('passwd')?>"></td> <td width="*" style="text-align:left;"><input type="password" id="passwd" name="passwd" value="<?= old('passwd', DEFAULT_EMPTY) ?>"></td>
</tr> </tr>
</table> </table>
</td> </td>