Esempio n. 1
0
 public static List<City> getCityListByProvinceNo(int provinceNo) {
   return CityFacade.getCityListByProvinceNo(provinceNo);
 }
Esempio n. 2
0
 public static List<City> getCityListByProvinceNoAndEnabled(int provinceNo, byte enabled) {
   return CityFacade.getCityListByProvinceNoAndEnabled(provinceNo, enabled);
 }
Esempio n. 3
0
 public static City getInfo(int id) {
   return CityFacade.getInfo(id);
 }
Esempio n. 4
0
 public static List<City> getList() {
   return CityFacade.getList();
 }
Esempio n. 5
0
 public static int update(City city) {
   return CityFacade.update(city);
 }
Esempio n. 6
0
 public static int add(City city) {
   return CityFacade.add(city);
 }
Esempio n. 7
0
 public static PagedList<City> getPagingList(CityCondition cityCondition) {
   return CityFacade.getPagingList(cityCondition);
 }