github.com/easysoft/zendata@v0.0.0-20240513203326-705bd5a7fd67/yaml/country/v1.yaml (about) 1 title: 国家数据 2 desc: 3 author: zentao 4 version: 1.0 5 6 field: country 7 instances: 8 - instance: chinese_full 9 note: 国家中文全名 10 fields: 11 - field: field1 12 from: country.v1 13 select: chinese_full 14 15 - instance: chinese_short 16 note: 国家中文名 17 fields: 18 - field: field1 19 from: country.v1 20 select: chinese_short 21 22 - instance: english_full 23 note: 国家英文全名 24 fields: 25 - field: field1 26 from: country.v1 27 select: english_full 28 29 - instance: english_short 30 note: 国家英文全名 31 fields: 32 - field: field1 33 from: country.v1 34 select: english_short 35 36 - instance: area_code 37 note: 国家编码 38 fields: 39 - field: field1 40 from: country.v1 41 select: area_code 42 43 # 亚洲国家 44 - instance: asia_chinese_full 45 note: 46 fields: 47 - field: field1 48 from: country.v1 49 select: chinese_full 50 where: continent = 'asia' 51 52 - instance: asia_chinese_short 53 note: 54 fields: 55 - field: field1 56 from: country.v1 57 select: chinese_short 58 where: continent = 'asia' 59 60 - instance: asia_english_full 61 note: 62 fields: 63 - field: field1 64 from: country.v1 65 select: english_full 66 where: continent = 'asia' 67 68 - instance: asia_area_code 69 note: 70 fields: 71 - field: field1 72 from: country.v1 73 select: area_code 74 where: continent = 'asia' 75 76 # 欧洲国家 77 - instance: europe_chinese_full 78 note: 79 fields: 80 - field: field1 81 from: country.v1 82 select: chinese_full 83 where: continent = 'europe' 84 85 - instance: europe_chinese_short 86 note: 87 fields: 88 - field: field1 89 from: country.v1 90 select: chinese_short 91 where: continent = 'europe' 92 93 - instance: europe_english_full 94 note: 95 fields: 96 - field: field1 97 from: country.v1 98 select: english_full 99 where: continent = 'europe' 100 101 - instance: europe_area_code 102 note: 103 fields: 104 - field: field1 105 from: country.v1 106 select: area_code 107 where: continent = 'europe' 108 109 # 北美国家 110 - instance: north_america_chinese_full 111 note: 112 fields: 113 - field: field1 114 from: country.v1 115 select: chinese_full 116 where: continent = 'north america' 117 118 - instance: north_america_chinese_short 119 note: 120 fields: 121 - field: field1 122 from: country.v1 123 select: chinese_short 124 where: continent = 'north america' 125 126 - instance: north_america_english_full 127 note: 128 fields: 129 - field: field1 130 from: country.v1 131 select: english_full 132 where: continent = 'north america' 133 134 - instance: north_america_area_code 135 note: 136 fields: 137 - field: field1 138 from: country.v1 139 select: area_code 140 where: continent = 'north america' 141 142 # 南美国家 143 - instance: south_america_chinese_full 144 note: 145 fields: 146 - field: field1 147 from: country.v1 148 select: chinese_full 149 where: continent = 'south america' 150 151 - instance: south_america_chinese_short 152 note: 153 fields: 154 - field: field1 155 from: country.v1 156 select: chinese_short 157 where: continent = 'south america' 158 159 - instance: south_america_english_full 160 note: 161 fields: 162 - field: field1 163 from: country.v1 164 select: english_full 165 where: continent = 'south america' 166 167 - instance: south_america_area_code 168 note: 169 fields: 170 - field: field1 171 from: country.v1 172 select: area_code 173 where: continent = 'south america' 174 175 # 大洋洲国家 176 - instance: oceania_chinese_full 177 note: 178 fields: 179 - field: field1 180 from: country.v1 181 select: chinese_full 182 where: continent = 'oceania' 183 184 - instance: oceania_chinese_short 185 note: 186 fields: 187 - field: field1 188 from: country.v1 189 select: chinese_short 190 where: continent = 'oceania' 191 192 - instance: oceania_english_full 193 note: 194 fields: 195 - field: field1 196 from: country.v1 197 select: english_full 198 where: continent = 'oceania' 199 200 - instance: oceania_area_code 201 note: 202 fields: 203 - field: field1 204 from: country.v1 205 select: area_code 206 where: continent = 'oceania'