├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Base ├── RelayCommand.cs └── ViewModelBase.cs ├── CustomControl ├── IconFontButton │ ├── IconFontButton.cs │ └── IconFontButton.xaml └── IconFontToggleButton │ ├── IconFontToggleButton.cs │ └── IconFontToggleButton.xaml ├── Demo.Lottery.csproj ├── Font └── iconfont.ttf ├── Images ├── Background │ └── background.jpg └── default.png ├── Lottery.sln ├── Model ├── AwardInfo.cs ├── AwardWinner.cs ├── Employee.cs ├── LogoElement.cs └── LogoFile.cs ├── NewBrush.cs ├── README.md ├── Themes ├── DataGridStyle.xaml └── Generic.xaml ├── Utility ├── CreateElementUtil.cs ├── ExcelHelper.cs ├── ImageUtil.cs ├── TypeExtension.cs └── XmlSerializer.cs ├── View ├── AwardWinnersUc.xaml ├── AwardWinnersUc.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── SettingWnd.xaml ├── SettingWnd.xaml.cs ├── WinnerInfoUc.xaml └── WinnerInfoUc.xaml.cs ├── ViewModel ├── MainVM.cs └── SettingVM.cs ├── bin └── netcoreapp3.1 │ ├── AwardInfo.xml │ ├── BouncyCastle.Crypto.dll │ ├── Demo.Lottery.deps.json │ ├── Demo.Lottery.dll │ ├── Demo.Lottery.exe │ ├── Demo.Lottery.pdb │ ├── Demo.Lottery.runtimeconfig.dev.json │ ├── Demo.Lottery.runtimeconfig.json │ ├── ICSharpCode.SharpZipLib.dll │ ├── Images │ ├── Background │ │ └── background.jpg │ ├── Employee │ │ ├── Abbey-行政-Z065.png │ │ ├── Able-行政-Z063.png │ │ ├── Ackerman-行政-Z061.png │ │ ├── Acuff-公关-Z071.jpg │ │ ├── Adaline-创意-Z074.jpg │ │ ├── Adam-大数据-Z037.jpg │ │ ├── Adams-机械-Z048.png │ │ ├── Adamson-行政-Z060.png │ │ ├── Adcock-行政-Z062.png │ │ ├── Addy-公关-Z068.png │ │ ├── Adkins-机械-Z057.png │ │ ├── Agnes-硬件-Z034.png │ │ ├── Albert-销售-Z017.jpg │ │ ├── Alex-硬件-Z028.jpg │ │ ├── Alfonso-公关-Z072.jpg │ │ ├── Alfredo-大数据-Z035.jpg │ │ ├── Ali-软件-Z022.jpg │ │ ├── Alinta-公关-Z073.jpg │ │ ├── Allen-机械-Z047.png │ │ ├── Alonso-软件-Z021.jpg │ │ ├── Andrew-软件-Z027.jpg │ │ ├── Anthony-机械-Z051.png │ │ ├── Ashley-机械-Z056.png │ │ ├── Ava-机械-Z046.png │ │ ├── Avery-行政-Z059.png │ │ ├── Barry-行政-Z058.png │ │ ├── Beck-软件-Z020.png │ │ ├── Benedict-软件-Z025.png │ │ ├── Brent-创意-Z075.jpg │ │ ├── Brooklyn-机械-Z055.png │ │ ├── Bruce-机械-Z054.png │ │ ├── Bryant-市场-Z009.jpg │ │ ├── Bryson-机械-Z050.png │ │ ├── Caiden-销售-Z015.jpg │ │ ├── Carl-财务-Z003.jpg │ │ ├── Carlos-销售-Z011.jpg │ │ ├── Cary-财务-Z002.jpg │ │ ├── Chelsea-人力资源-Z041.png │ │ ├── Damon-行政-Z066.png │ │ ├── Daniel-机械-Z053.png │ │ ├── David-机械-Z052.png │ │ ├── Diana-硬件-Z031.jpg │ │ ├── Dick-销售-Z013.jpg │ │ ├── Easter-软件-Z023.jpg │ │ ├── Evan-行政-Z064.png │ │ ├── Eve-人力资源-Z044.png │ │ ├── Frederica-销售-Z014.jpg │ │ ├── Gina-大数据-Z036.jpg │ │ ├── Hannah-软件-Z024.jpg │ │ ├── Hilda-硬件-Z033.jpg │ │ ├── Irene-人力资源-Z042.png │ │ ├── Ishtar-人力资源-Z040.png │ │ ├── James-机械-Z049.png │ │ ├── Joyce-销售-Z018.jpg │ │ ├── Justin-硬件-Z029.jpg │ │ ├── Kay-软件-Z026.jpg │ │ ├── Kelly-市场-Z010.jpg │ │ ├── Kevin-财务-Z001.jpg │ │ ├── King-市场-Z007.jpg │ │ ├── Larissa-市场-Z008.jpg │ │ ├── Laura-人力资源-Z043.png │ │ ├── Leon-软件-Z019.jpg │ │ ├── Lilith-销售-Z012.jpg │ │ ├── Louise-大数据-Z039.png │ │ ├── Lucas-市场-Z006.jpg │ │ ├── Michael-销售-Z016.png │ │ ├── Nick-硬件-Z032.jpg │ │ ├── Peter-公关-Z069.png │ │ ├── Regina-大数据-Z038.jpg │ │ ├── Tankard-硬件-Z030.jpg │ │ ├── Van-公关-Z070.jpg │ │ ├── Victor-公关-Z067.png │ │ ├── Warren-市场-Z005.jpg │ │ ├── Wilson-机械-Z045.png │ │ ├── Zack-财务-Z004.jpg │ │ └── 员工.xlsx │ └── default.png │ ├── NPOI.OOXML.dll │ ├── NPOI.OpenXml4Net.dll │ ├── NPOI.OpenXmlFormats.dll │ └── NPOI.dll ├── showing.gif └── 抽奖.ico /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/AssemblyInfo.cs -------------------------------------------------------------------------------- /Base/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Base/RelayCommand.cs -------------------------------------------------------------------------------- /Base/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Base/ViewModelBase.cs -------------------------------------------------------------------------------- /CustomControl/IconFontButton/IconFontButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/CustomControl/IconFontButton/IconFontButton.cs -------------------------------------------------------------------------------- /CustomControl/IconFontButton/IconFontButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/CustomControl/IconFontButton/IconFontButton.xaml -------------------------------------------------------------------------------- /CustomControl/IconFontToggleButton/IconFontToggleButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/CustomControl/IconFontToggleButton/IconFontToggleButton.cs -------------------------------------------------------------------------------- /CustomControl/IconFontToggleButton/IconFontToggleButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/CustomControl/IconFontToggleButton/IconFontToggleButton.xaml -------------------------------------------------------------------------------- /Demo.Lottery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Demo.Lottery.csproj -------------------------------------------------------------------------------- /Font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Font/iconfont.ttf -------------------------------------------------------------------------------- /Images/Background/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Images/Background/background.jpg -------------------------------------------------------------------------------- /Images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Images/default.png -------------------------------------------------------------------------------- /Lottery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Lottery.sln -------------------------------------------------------------------------------- /Model/AwardInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Model/AwardInfo.cs -------------------------------------------------------------------------------- /Model/AwardWinner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Model/AwardWinner.cs -------------------------------------------------------------------------------- /Model/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Model/Employee.cs -------------------------------------------------------------------------------- /Model/LogoElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Model/LogoElement.cs -------------------------------------------------------------------------------- /Model/LogoFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Model/LogoFile.cs -------------------------------------------------------------------------------- /NewBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/NewBrush.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/README.md -------------------------------------------------------------------------------- /Themes/DataGridStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Themes/DataGridStyle.xaml -------------------------------------------------------------------------------- /Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Themes/Generic.xaml -------------------------------------------------------------------------------- /Utility/CreateElementUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Utility/CreateElementUtil.cs -------------------------------------------------------------------------------- /Utility/ExcelHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Utility/ExcelHelper.cs -------------------------------------------------------------------------------- /Utility/ImageUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Utility/ImageUtil.cs -------------------------------------------------------------------------------- /Utility/TypeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Utility/TypeExtension.cs -------------------------------------------------------------------------------- /Utility/XmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/Utility/XmlSerializer.cs -------------------------------------------------------------------------------- /View/AwardWinnersUc.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/View/AwardWinnersUc.xaml -------------------------------------------------------------------------------- /View/AwardWinnersUc.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/View/AwardWinnersUc.xaml.cs -------------------------------------------------------------------------------- /View/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/View/MainWindow.xaml -------------------------------------------------------------------------------- /View/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/View/MainWindow.xaml.cs -------------------------------------------------------------------------------- /View/SettingWnd.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/View/SettingWnd.xaml -------------------------------------------------------------------------------- /View/SettingWnd.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/View/SettingWnd.xaml.cs -------------------------------------------------------------------------------- /View/WinnerInfoUc.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/View/WinnerInfoUc.xaml -------------------------------------------------------------------------------- /View/WinnerInfoUc.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/View/WinnerInfoUc.xaml.cs -------------------------------------------------------------------------------- /ViewModel/MainVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/ViewModel/MainVM.cs -------------------------------------------------------------------------------- /ViewModel/SettingVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/ViewModel/SettingVM.cs -------------------------------------------------------------------------------- /bin/netcoreapp3.1/AwardInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/AwardInfo.xml -------------------------------------------------------------------------------- /bin/netcoreapp3.1/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Demo.Lottery.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Demo.Lottery.deps.json -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Demo.Lottery.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Demo.Lottery.dll -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Demo.Lottery.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Demo.Lottery.exe -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Demo.Lottery.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Demo.Lottery.pdb -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Demo.Lottery.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Demo.Lottery.runtimeconfig.dev.json -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Demo.Lottery.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Demo.Lottery.runtimeconfig.json -------------------------------------------------------------------------------- /bin/netcoreapp3.1/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Background/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Background/background.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Abbey-行政-Z065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Abbey-行政-Z065.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Able-行政-Z063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Able-行政-Z063.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Ackerman-行政-Z061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Ackerman-行政-Z061.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Acuff-公关-Z071.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Acuff-公关-Z071.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Adaline-创意-Z074.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Adaline-创意-Z074.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Adam-大数据-Z037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Adam-大数据-Z037.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Adams-机械-Z048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Adams-机械-Z048.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Adamson-行政-Z060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Adamson-行政-Z060.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Adcock-行政-Z062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Adcock-行政-Z062.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Addy-公关-Z068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Addy-公关-Z068.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Adkins-机械-Z057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Adkins-机械-Z057.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Agnes-硬件-Z034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Agnes-硬件-Z034.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Albert-销售-Z017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Albert-销售-Z017.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Alex-硬件-Z028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Alex-硬件-Z028.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Alfonso-公关-Z072.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Alfonso-公关-Z072.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Alfredo-大数据-Z035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Alfredo-大数据-Z035.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Ali-软件-Z022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Ali-软件-Z022.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Alinta-公关-Z073.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Alinta-公关-Z073.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Allen-机械-Z047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Allen-机械-Z047.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Alonso-软件-Z021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Alonso-软件-Z021.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Andrew-软件-Z027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Andrew-软件-Z027.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Anthony-机械-Z051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Anthony-机械-Z051.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Ashley-机械-Z056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Ashley-机械-Z056.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Ava-机械-Z046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Ava-机械-Z046.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Avery-行政-Z059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Avery-行政-Z059.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Barry-行政-Z058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Barry-行政-Z058.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Beck-软件-Z020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Beck-软件-Z020.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Benedict-软件-Z025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Benedict-软件-Z025.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Brent-创意-Z075.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Brent-创意-Z075.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Brooklyn-机械-Z055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Brooklyn-机械-Z055.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Bruce-机械-Z054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Bruce-机械-Z054.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Bryant-市场-Z009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Bryant-市场-Z009.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Bryson-机械-Z050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Bryson-机械-Z050.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Caiden-销售-Z015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Caiden-销售-Z015.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Carl-财务-Z003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Carl-财务-Z003.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Carlos-销售-Z011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Carlos-销售-Z011.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Cary-财务-Z002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Cary-财务-Z002.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Chelsea-人力资源-Z041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Chelsea-人力资源-Z041.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Damon-行政-Z066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Damon-行政-Z066.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Daniel-机械-Z053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Daniel-机械-Z053.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/David-机械-Z052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/David-机械-Z052.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Diana-硬件-Z031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Diana-硬件-Z031.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Dick-销售-Z013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Dick-销售-Z013.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Easter-软件-Z023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Easter-软件-Z023.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Evan-行政-Z064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Evan-行政-Z064.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Eve-人力资源-Z044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Eve-人力资源-Z044.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Frederica-销售-Z014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Frederica-销售-Z014.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Gina-大数据-Z036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Gina-大数据-Z036.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Hannah-软件-Z024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Hannah-软件-Z024.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Hilda-硬件-Z033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Hilda-硬件-Z033.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Irene-人力资源-Z042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Irene-人力资源-Z042.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Ishtar-人力资源-Z040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Ishtar-人力资源-Z040.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/James-机械-Z049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/James-机械-Z049.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Joyce-销售-Z018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Joyce-销售-Z018.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Justin-硬件-Z029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Justin-硬件-Z029.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Kay-软件-Z026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Kay-软件-Z026.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Kelly-市场-Z010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Kelly-市场-Z010.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Kevin-财务-Z001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Kevin-财务-Z001.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/King-市场-Z007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/King-市场-Z007.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Larissa-市场-Z008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Larissa-市场-Z008.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Laura-人力资源-Z043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Laura-人力资源-Z043.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Leon-软件-Z019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Leon-软件-Z019.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Lilith-销售-Z012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Lilith-销售-Z012.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Louise-大数据-Z039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Louise-大数据-Z039.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Lucas-市场-Z006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Lucas-市场-Z006.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Michael-销售-Z016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Michael-销售-Z016.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Nick-硬件-Z032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Nick-硬件-Z032.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Peter-公关-Z069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Peter-公关-Z069.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Regina-大数据-Z038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Regina-大数据-Z038.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Tankard-硬件-Z030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Tankard-硬件-Z030.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Van-公关-Z070.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Van-公关-Z070.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Victor-公关-Z067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Victor-公关-Z067.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Warren-市场-Z005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Warren-市场-Z005.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Wilson-机械-Z045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Wilson-机械-Z045.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/Zack-财务-Z004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/Zack-财务-Z004.jpg -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/Employee/员工.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/Employee/员工.xlsx -------------------------------------------------------------------------------- /bin/netcoreapp3.1/Images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/Images/default.png -------------------------------------------------------------------------------- /bin/netcoreapp3.1/NPOI.OOXML.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/NPOI.OOXML.dll -------------------------------------------------------------------------------- /bin/netcoreapp3.1/NPOI.OpenXml4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/NPOI.OpenXml4Net.dll -------------------------------------------------------------------------------- /bin/netcoreapp3.1/NPOI.OpenXmlFormats.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/NPOI.OpenXmlFormats.dll -------------------------------------------------------------------------------- /bin/netcoreapp3.1/NPOI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/bin/netcoreapp3.1/NPOI.dll -------------------------------------------------------------------------------- /showing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/showing.gif -------------------------------------------------------------------------------- /抽奖.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Happy8Zhang/Lottery/HEAD/抽奖.ico --------------------------------------------------------------------------------