Subversion Repositories SmartDukaan

Rev

Rev 33128 | 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
 
33553 ranu 4
import com.spice.profitmandi.dao.entity.auth.Menu;
33124 ranu 5
import org.springframework.stereotype.Repository;
6
 
7
import java.util.List;
8
 
9
@Repository
10
public interface ASTRepository {
33128 amit.gupta 11
    List<AST> selectByStateId(int stateId);
12
    AST selectById(int id);
33553 ranu 13
    List<AST> selectAll();
33124 ranu 14
 
15
}