Page History
...
Code Block | ||||
---|---|---|---|---|
| ||||
package com.example.demo.data;
public class AddressStatistics {
private String fname; //집계대상 필드는 변동이될수 있기때문에 한정짓지말고,공용이름을 사용합니다.
private Long cnt;
public AddressStatistics(String fname,Long cnt) {
this.fname = fname;
this.cnt = cnt;
}
} |
...