Subversion Repositories SmartDukaan

Rev

Rev 33124 | Rev 33553 | Go to most recent revision | Details | Compare with Previous | 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 {
33128 amit.gupta 10
    List<AST> selectByStateId(int stateId);
11
    AST selectById(int id);
33124 ranu 12
 
13
}