You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
346 B
23 lines
346 B
|
4 months ago
|
/**
|
||
|
|
* ${basic.description} 枚举
|
||
|
|
*
|
||
|
|
* @Author: ${basic.frontAuthor}
|
||
|
|
* @Date: ${basic.frontDate}
|
||
|
|
* @Copyright ${basic.copyright}
|
||
|
|
*/
|
||
|
|
|
||
|
|
#foreach ($enum in $enumList)
|
||
|
|
|
||
|
|
/**
|
||
|
|
* $enum.columnComment
|
||
|
|
*/
|
||
|
|
export const $enum.upperUnderscoreEnum = {
|
||
|
|
|
||
|
|
}
|
||
|
|
#end
|
||
|
|
|
||
|
|
export default {
|
||
|
|
#foreach ($enum in $enumList)
|
||
|
|
$enum.upperUnderscoreEnum,
|
||
|
|
#end
|
||
|
|
};
|