Subversion Repositories SmartDukaan

Rev

Rev 33553 | 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);
35394 amit 13
    List<AST> selectByIds(List<Integer> ids);
33553 ranu 14
    List<AST> selectAll();
33124 ranu 15
 
16
}