律所系统后端
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

/**
* ${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
};