1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // Copyright 2019 getensh.com. All rights reserved.
- // Use of this source code is governed by getensh.com.
- package consts
- const (
- PageSize = 10
- )
- var YearMap = map[string]int{
- "1": 2001,
- "2": 2002,
- "3": 2003,
- "4": 2004,
- "5": 2005,
- "6": 2006,
- "7": 2007,
- "8": 2008,
- "9": 2009,
- "A": 2010,
- "B": 2011,
- "C": 2012,
- "D": 2013,
- "E": 2014,
- "F": 2015,
- "G": 2016,
- "H": 2017,
- "J": 2018,
- "K": 2019,
- "L": 2020,
- "M": 2021,
- "N": 2022,
- "P": 2023,
- "R": 2024,
- "S": 2025,
- "T": 2026,
- "V": 2027,
- "W": 2028,
- "X": 2029,
- "Y": 2030,
- }
|