Rev 33553 | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.entity.logistics;import com.spice.profitmandi.dao.entity.auth.Menu;import org.springframework.stereotype.Repository;import java.util.List;@Repositorypublic interface ASTRepository {List<AST> selectByStateId(int stateId);AST selectById(int id);List<AST> selectByIds(List<Integer> ids);List<AST> selectAll();}