Files
journal/vendor/chinadoi/include/UploadResult.class.php
wangjinlei a9bdce100c 20220406
2022-04-06 18:24:31 +08:00

59 lines
879 B
PHP

<?php
/**
* @className:UploadResult.php
* @classDescription:文件上传结果类
* @author:adminstrator
* @createTime:2016-07-12
*/
class UploadResult {
/**
* 上传状态
*/
var $uploadState;
/**
* 系统中的文件名
*/
var $newFileNames;
/**
* 取得上传状态
*
* @return 上传状态
*/
function getUploadState() {
return $this->uploadState;
}
/**
* 设置上传状态
*
* @param 上传状态
*/
function setUploadState( $uploadState) {
$this->uploadState = $uploadState;
}
/**
* 取得系统中的文件名
*
* @return 系统中的文件名
*/
function getNewFileNames() {
return $this->newFileNames;
}
/**
* 设置系统中的文件名
*
* @param 系统中的文件名
*/
function setNewFileNames( $newFileNames) {
$this->newFileNames = $newFileNames;
}
}