摘要: /// <summary> /// 金额数字转大写(带小数点) /// </summary> public static string PriceToCn(decimal price) { //数字转大写 string[] n = { "零", "壹", "贰", "叁", "肆", "伍", "陆 阅读全文
posted @ 2021-09-17 13:46 Nine_Jason 阅读(517) 评论(2) 推荐(1)
摘要: 在 Nuget 中导入需要的插件: 实现的代码: 1 [HttpGet, Route("CreatePdf")] 2 public Response CreatePdf() 3 { 4 Response resp = new Response(); 5 resp.StartTime = DateTi 阅读全文
posted @ 2021-09-08 11:21 Nine_Jason 阅读(627) 评论(0) 推荐(1)