DictionaryDataSeed.cs 13.4 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
using SqlSugar;
using Volo.Abp.Data;
using Volo.Abp.DependencyInjection;
using Yi.Framework.Rbac.Domain.Entities;
using Yi.Framework.SqlSugarCore.Abstractions;

namespace Yi.Framework.Rbac.SqlSugarCore.DataSeeds
{
    public class DictionaryDataSeed : IDataSeedContributor, ITransientDependency
    {
        private ISqlSugarRepository<DictionaryEntity> _repository;
        public DictionaryDataSeed(ISqlSugarRepository<DictionaryEntity> repository)
        {
            _repository= repository;
        }
        public async Task SeedAsync(DataSeedContext context)
        {
            if (!await _repository.IsAnyAsync(x => true))
            {
                await _repository.InsertManyAsync(GetSeedData());
            }
        }
        public  List<DictionaryEntity> GetSeedData()
        {
            List<DictionaryEntity> entities = new List<DictionaryEntity>();
            DictionaryEntity dictInfo1 = new DictionaryEntity()
            {

                DictLabel = "男",
                DictValue = "Male",
                DictType = "sys_user_sex",
                OrderNum = 100,
                Remark = "性别男",
                IsDeleted = false,
                State = true,
                ListClass = "default"

            };
            entities.Add(dictInfo1);

            DictionaryEntity dictInfo2 = new DictionaryEntity()
            {

                DictLabel = "女",
                DictValue = "Woman",
                DictType = "sys_user_sex",
                OrderNum = 99,
                Remark = "性别女",
                IsDeleted = false,
                State = true,
                ListClass = "default"
            };
            entities.Add(dictInfo2);

            DictionaryEntity dictInfo3 = new DictionaryEntity()
            {

                DictLabel = "未知",
                DictValue = "Unknown",
                DictType = "sys_user_sex",
                OrderNum = 98,
                Remark = "性别未知",
                IsDeleted = false,
                State = true,
                ListClass = "default"
            };
            entities.Add(dictInfo3);



            DictionaryEntity dictInfo4 = new DictionaryEntity()
            {

                DictLabel = "显示",
                DictValue = "true",
                DictType = "sys_show_hide",
                OrderNum = 100,
                Remark = "显示菜单",
                IsDeleted = false,
                State = true,
                ListClass = "success"
            };
            entities.Add(dictInfo4);

            DictionaryEntity dictInfo5 = new DictionaryEntity()
            {

                DictLabel = "隐藏",
                DictValue = "false",
                DictType = "sys_show_hide",
                OrderNum = 99,
                Remark = "隐藏菜单",
                IsDeleted = false,
                State = true,
                ListClass = "info"
            };
            entities.Add(dictInfo5);



            DictionaryEntity dictInfo6 = new DictionaryEntity()
            {

                DictLabel = "正常",
                DictValue = "true",
                DictType = "sys_normal_disable",
                OrderNum = 100,
                Remark = "正常状态",
                IsDeleted = false,
                State = true,
                ListClass = "success"
            };
            entities.Add(dictInfo6);
            DictionaryEntity dictInfo7 = new DictionaryEntity()
            {

                DictLabel = "停用",
                DictValue = "false",
                DictType = "sys_normal_disable",
                OrderNum = 99,
                Remark = "停用状态",
                IsDeleted = false,
                State = true,
                ListClass = "danger"
            };
            entities.Add(dictInfo7);



            DictionaryEntity dictInfo8 = new DictionaryEntity()
            {

                DictLabel = "正常",
                DictValue = "0",
                DictType = "sys_job_status",
                OrderNum = 100,
                Remark = "正常状态",
                IsDeleted = false,
                State = true,
                ListClass = "success"
            };
            entities.Add(dictInfo8);
            DictionaryEntity dictInfo9 = new DictionaryEntity()
            {

                DictLabel = "暂停",
                DictValue = "1",
                DictType = "sys_job_status",
                OrderNum = 99,
                Remark = "停用状态",
                IsDeleted = false,
                State = true,
                ListClass = "danger"
            };
            entities.Add(dictInfo9);




            DictionaryEntity dictInfo10 = new DictionaryEntity()
            {

                DictLabel = "默认",
                DictValue = "DEFAULT",
                DictType = "sys_job_group",
                OrderNum = 100,
                Remark = "默认分组",
                IsDeleted = false,
                State = true,
                ListClass = "default"
            };
            entities.Add(dictInfo10);
            DictionaryEntity dictInfo11 = new DictionaryEntity()
            {

                DictLabel = "系统",
                DictValue = "SYSTEM",
                DictType = "sys_job_group",
                OrderNum = 99,
                Remark = "系统分组",
                IsDeleted = false,
                State = true,
                ListClass = "primary"
            };
            entities.Add(dictInfo11);



            DictionaryEntity dictInfo12 = new DictionaryEntity()
            {

                DictLabel = "是",
                DictValue = "Y",
                DictType = "sys_yes_no",
                OrderNum = 100,
                Remark = "系统默认是",
                IsDeleted = false,
                State = true,
                ListClass = "success"
            };
            entities.Add(dictInfo12);
            DictionaryEntity dictInfo13 = new DictionaryEntity()
            {

                DictLabel = "否",
                DictValue = "N",
                DictType = "sys_yes_no",
                OrderNum = 99,
                Remark = "系统默认否",
                IsDeleted = false,
                State = true,
                ListClass = "danger"
            };
            entities.Add(dictInfo13);



            DictionaryEntity dictInfo14 = new DictionaryEntity()
            {

                DictLabel = "通知",
                DictValue = "1",
                DictType = "sys_notice_type",
                OrderNum = 100,
                Remark = "通知",
                IsDeleted = false,
                State = true,
                ListClass = "info"
            };
            entities.Add(dictInfo14);
            DictionaryEntity dictInfo15 = new DictionaryEntity()
            {

                DictLabel = "公告",
                DictValue = "2",
                DictType = "sys_notice_type",
                OrderNum = 99,
                Remark = "公告",
                IsDeleted = false,
                State = true,
                ListClass = "primary"
            };
            entities.Add(dictInfo15);
            DictionaryEntity dictInfo14_2 = new DictionaryEntity()
            {

                DictLabel = "通知",
                DictValue = "MerryGoRound",
                DictType = "sys_notice_type_vben5",
                OrderNum = 100,
                Remark = "通知",
                IsDeleted = false,
                State = true,
                ListClass = "info"
            };
            entities.Add(dictInfo14_2);
            DictionaryEntity dictInfo15_2 = new DictionaryEntity()
            {

                DictLabel = "公告",
                DictValue = "Popup",
                DictType = "sys_notice_type_vben5",
                OrderNum = 99,
                Remark = "公告",
                IsDeleted = false,
                State = true,
                ListClass = "primary"
            };
            entities.Add(dictInfo15_2);

            DictionaryEntity dictInfo16 = new DictionaryEntity()
            {

                DictLabel = "正常",
                DictValue = "0",
                DictType = "sys_notice_status",
                OrderNum = 100,
                Remark = "正常状态",
                IsDeleted = false,
                State = true,
                ListClass = "success"
            };
            entities.Add(dictInfo16);
            DictionaryEntity dictInfo17 = new DictionaryEntity()
            {

                DictLabel = "关闭",
                DictValue = "1",
                DictType = "sys_notice_status",
                OrderNum = 99,
                Remark = "关闭状态",
                IsDeleted = false,
                State = true,
                ListClass = "danger"
            };
            entities.Add(dictInfo17);

            DictionaryEntity dictInfo18 = new DictionaryEntity()
            {

                DictLabel = "新增",
                DictValue = "Insert",
                DictType = "sys_oper_type",
                OrderNum = 100,
                Remark = "新增操作",
                IsDeleted = false,
                State = true,
                ListClass = "success"
            };
            entities.Add(dictInfo18);
            DictionaryEntity dictInfo19 = new DictionaryEntity()
            {

                DictLabel = "修改",
                DictValue = "Update",
                DictType = "sys_oper_type",
                OrderNum = 99,
                Remark = "修改操作",
                IsDeleted = false,
                State = true,
                ListClass = "warning"
            };
            entities.Add(dictInfo19);
            DictionaryEntity dictInfo22 = new DictionaryEntity()
            {

                DictLabel = "删除",
                DictValue = "Delete",
                DictType = "sys_oper_type",
                OrderNum = 98,
                Remark = "删除操作",
                IsDeleted = false,
                State = true,
                ListClass = "danger"
            };
            entities.Add(dictInfo22);
            DictionaryEntity dictInfo23 = new DictionaryEntity()
            {

                DictLabel = "授权",
                DictValue = "Auth",
                DictType = "sys_oper_type",
                OrderNum = 97,
                Remark = "授权操作",
                IsDeleted = false,
                State = true,
                ListClass = "primary"
            };
            entities.Add(dictInfo23);
            DictionaryEntity dictInfo24 = new DictionaryEntity()
            {

                DictLabel = "导出",
                DictValue = "Export",
                DictType = "sys_oper_type",
                OrderNum = 96,
                Remark = "导出操作",
                IsDeleted = false,
                State = true,
                ListClass = "info"
            };
            entities.Add(dictInfo24);
            DictionaryEntity dictInfo25 = new DictionaryEntity()
            {

                DictLabel = "导入",
                DictValue = "Import",
                DictType = "sys_oper_type",
                OrderNum = 95,
                Remark = "导入操作",
                IsDeleted = false,
                State = true,
                ListClass = "info"
            };
            entities.Add(dictInfo25);
            DictionaryEntity dictInfo26 = new DictionaryEntity()
            {

                DictLabel = "强退",
                DictValue = "ForcedOut",
                DictType = "sys_oper_type",
                OrderNum = 94,
                Remark = "强退操作",
                IsDeleted = false,
                State = true,
                ListClass = "warning"
            };
            entities.Add(dictInfo26);
            DictionaryEntity dictInfo27 = new DictionaryEntity()
            {

                DictLabel = "生成代码",
                DictValue = "GenerateCode",
                DictType = "sys_oper_type",
                OrderNum = 93,
                Remark = "生成代码操作",
                IsDeleted = false,
                State = true,
                ListClass = "primary"
            };
            entities.Add(dictInfo27);
            DictionaryEntity dictInfo28 = new DictionaryEntity()
            {

                DictLabel = "清空数据",
                DictValue = "ClearData",
                DictType = "sys_oper_type",
                OrderNum = 92,
                Remark = "清空数据操作",
                IsDeleted = false,
                State = true,
                ListClass = "danger"
            };
            entities.Add(dictInfo28);



            DictionaryEntity dictInfo20 = new DictionaryEntity()
            {

                DictLabel = "成功",
                DictValue = "false",
                DictType = "sys_common_status",
                OrderNum = 100,
                Remark = "正常状态",
                IsDeleted = false,
                State = true,
                ListClass = "success"
            };
            entities.Add(dictInfo20);
            DictionaryEntity dictInfo21 = new DictionaryEntity()
            {

                DictLabel = "失败",
                DictValue = "true",
                DictType = "sys_common_status",
                OrderNum = 99,
                Remark = "失败状态",
                IsDeleted = false,
                State = true,
                ListClass = "danger"
            };
            entities.Add(dictInfo21);

            return entities;
        }
    }
}