Subversion Repositories SmartDukaan

Rev

Rev 33128 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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