Results 2 issues of Oz Kang

I checked issue https://github.com/hgourvest/node-firebird/issues/283 and tried DEFAULT_ENCODING = 'KSC_5601', 'KSC5601' and 'MS949' but none of them worked. Can anyone help me?

``` typescript @Controller("bbs/articles/:section") export class BbsArticlesController { @core.TypedRoute.Patch() @TypedException({ status: 401, description: "Unauthorized", }) public index( @core.TypedParam("section") section: string, @core.TypedBody() input: IBbsArticle.IRequest, ): Promise { return BbsArticleProvider.index(section, input); } }...

wontfix