1234567891011121314151617181920212223242526272829303132333435363738 |
- namespace Long.Common.Basedata
- {
-
-
-
- public class Country
- {
-
-
-
- public long Id { get; set; }
-
-
-
- public int CountryCode { get; set; }
-
-
-
- public string SimplifiedChinese { get; set; }
-
-
-
- public string English { get; set; }
-
-
-
- public string Abbreviation { get; set; }
-
-
-
- public string Abbreviation2 { get; set; }
- }
- }
|