命名DTO对象

我有一个名为Country的模型对象:

class Country
{
    public string Name { get; set; }
    public string Code { get; set; }
    public Region[] Regions {get;set;}
    public URI[] Uris {get;set;}
}

并通过WebService获得多个版本的“国家/地区”:

>仅名称和代码
>每个领域
>每一份都没有Uris
>没有收集地区的每个领域

什么名字给他们?

> CountryNameWithCode
> CountryWithoutUris
>国家
> CountryWithoutRegions?

这是给英国的客户的.对不起,我的英语不好.

解决方法:

这是我的选择:

> CountryId / CountryIdentity / CountryRef / CountryEntry
>国家/国家/地区详细信息/ CountyAllInfo
> CountryWithRegions
> CountryWithUris

上一篇:JAVA-正则例子记录


下一篇:java-是否有一种方法(例如Eclipse插件)自动从实体(JPA)生成DTO?