spring/spring boot+mybatis+phoenix

This commit is contained in:
罗祥
2019-04-05 08:45:16 +08:00
parent 1d64b41629
commit 3af833743f
24 changed files with 503 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
package com.heibaiying.bean;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class USPopulation {
private String state;
private String city;
private long population;
}