| | |
| | | import org.apache.ibatis.annotations.Delete; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Mapper |
| | | @Repository |
| | |
| | | |
| | | @Delete("delete from cust_matnr_barcode where matnr=#{matnr}") |
| | | void deleteByMatnr(String matnr); |
| | | |
| | | String page(Integer pageNo, Integer pageSize, String barcode, Integer spec); |
| | | |
| | | @Select("select top 100 * from cust_matnr_barcode where model = '' or model is null ") |
| | | List<MatBarcode> select100(); |
| | | } |