Rev 33128 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.entity.logistics;import org.springframework.stereotype.Repository;import java.util.List;@Repositorypublic interface ASTRepository {public List<AST> selectByStateId(int stateId);public List<AST> selectById(int id);}