package com.ygj.yuemum.dao.maternitymatron; import com.ygj.yuemum.domain.maternitymatron.JlServiceUserInfo; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface JlServiceUserInfoDao { List getAll(); int deleteByPrimaryKey(Integer id); int insertSelective(JlServiceUserInfo record); JlServiceUserInfo selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(JlServiceUserInfo record); }