You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
kyebyungha eba24a8f8c
style 우선 로컬화
3 years ago
.externalToolBuilders Initial commit & Project import 4 years ago
.idea 비밀번호 초기화 기능적용 및 설정값 변경(bf.properties, log4j, pom.xml) 4 years ago
.settings Initial commit & Project import 4 years ago
doc Initial commit & Project import 4 years ago
src/main style 우선 로컬화 3 years ago
.classpath Initial commit & Project import 4 years ago
.gitignore Initial commit & Project import 4 years ago
.project Initial commit & Project import 4 years ago
.springBeans Initial commit & Project import 4 years ago
README.md 1. 회원 자녀관련 매칭구조 스키마 수정, 쿼리 수정 3 years ago
ddl_20220205.txt 기록카테고리 및 기념일 일수계산 추가 3 years ago
explain.txt Initial commit & Project import 4 years ago
pom.xml 비밀번호 초기화 기능적용 및 설정값 변경(bf.properties, log4j, pom.xml) 4 years ago

README.md

bf

-- 쿼리작업중 SELECT smc_no, a.name, gender, birthday, weight_birth, height_birth, weight, height, allergie, append_src_img_file, append_300_img_file, now(), '1642860993576' FROM tbl_bf_family_baby a INNER JOIN tbl_sync_log b on a.member_id = b.member_id and b.check_num = '1323' and DATE_ADD(b.reg_dt, INTERVAL 180 second) > now() LIMIT 1;

select * from tbl_sync_log; select * from tbl_bf_family; select * from tbl_bf_family_baby;

select DATE_ADD(now(), INTERVAL 10 second) from tbl_bf_family_baby;

select check_num, member_id, reg_dt, DATE_ADD(reg_dt, INTERVAL 10 second) from tbl_sync_log where DATE_ADD(reg_dt, INTERVAL 100 second) > now();

select * from tbl_bf_family_baby_order; select * from tbl_member where name = '김엄마'; select * from tbl_member where name = '김종환';

-- 세션 회원아이디 GET HttpSession session = request.getSession(false); DataMap rm_mem = (DataMap) session.getAttribute(ConstantSystem.SESSION_RM_MEMBER); paramMap.put("member_id", RenaStringUtil.getData(rm_mem, "member_id"));