Subversion Repositories SmartDukaan

Rev

Rev 33128 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33124 ranu 1
 
2
package com.spice.profitmandi.dao.entity.logistics;
3
 
4
import org.springframework.stereotype.Repository;
5
 
6
import java.util.List;
7
 
8
@Repository
9
public interface ASTRepository {
10
    public List<AST> selectByStateId(int stateId);
11
 
12
    public List<AST> selectById(int id);
13
 
14
}