LandListDao.java 509 字节
package com.sy.mapper;

import com.sy.model.LandList;

public interface LandListDao {
    int deleteByPrimaryKey(String id);

    int insert(LandList record);

    int insertSelective(LandList record);

    LandList selectByPrimaryKey(String id);

    int updateByPrimaryKeySelective(LandList record);

    int updateByPrimaryKey(LandList record);

    /**
     * 根据二维码 核销申请单
     * @param barcode 二维码
     * @return 更新数据量
     */
    int releaseBarcode(String barcode);
}