打印服务
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.

18 lines
583 B

3 years ago
  1. using Microsoft.Extensions.Configuration;
  2. using MySql.Data.MySqlClient;
  3. using POSCorePrint.Jobs;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Data;
  7. using System.Text;
  8. namespace POSCorePrint
  9. {
  10. internal class Constant
  11. {
  12. internal static int port = 9100;
  13. internal static IConfigurationRoot Configuration;
  14. internal static string ConnectionString;
  15. internal static double PrintBackTime;//打印多久之前的数据:分钟
  16. internal static double SaveHisDataDays;//只保留最近几天的打印数据:天
  17. }
  18. }