package utils const ( Md5Key = "Ks@h64WJ#tcVgG8$&WlNfqvLAtMgpxWN" ) //常量定义 const ( FormatTime = "15:04:05" //时间格式 FormatDate = "2006-01-02" //日期格式 FormatDateTime = "2006-01-02 15:04:05" //完整时间格式 HlbFormatDateTime = "2006-01-02_15:04:05.999" //完整时间格式 FormatDateTimeUnSpace = "20060102150405" //完整时间格式 PageSize15 = 15 //列表页每页数据量 PageSize5 = 5 PageSize10 = 10 PageSize20 = 20 PageSize30 = 30 ) const ( APPNAME = "弘则-查研观向" EmailSendToUsers = "glji@hzinsights.com" ) //手机号,电子邮箱正则 const ( RegularMobile = "^((13[0-9])|(14[5|7])|(15([0-3]|[5-9]))|(18[0-9])|(17[0-9])|(16[0-9])|(19[0-9]))\\d{8}$" //手机号码 RegularEmail = `\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*` //匹配电子邮箱 ) //聚合短信 var ( JhGnTplId = "65692" //聚合国内模板编码 JhGjTplId = "10054" //聚合国内模板编码 JhGnAppKey = "4c8504c49dd335e99cfd7b6a3a9e2415" //聚合国内AppKey JhGjAppKey = "3326ad2c1047a4cd92ace153e6044ca3" ) //OSS var ( Endpoint string = "oss-cn-shanghai.aliyuncs.com" Bucketname string = "hongze" Imghost string = "http://hongze.oss-cn-shanghai.aliyuncs.com/" Upload_dir string = "static/images/" Upload_Audio_Dir string = "static/audio/" AccessKeyId string = "LTAIFMZYQhS2BTvW" AccessKeySecret string = "12kk1ptCHoGWedhBnKRVW5hRJzq9Fq" )