嗨森逛服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hai-server/hai-service/src/main/java/com/hai/dao/HighGasOilGunNoMapper.java

128 lines
6.3 KiB

3 years ago
package com.hai.dao;
import com.hai.entity.HighGasOilGunNo;
import com.hai.entity.HighGasOilGunNoExample;
import java.util.List;
import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.DeleteProvider;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.InsertProvider;
import org.apache.ibatis.annotations.Options;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Result;
import org.apache.ibatis.annotations.Results;
import org.apache.ibatis.annotations.Select;
import org.apache.ibatis.annotations.SelectProvider;
import org.apache.ibatis.annotations.Update;
import org.apache.ibatis.annotations.UpdateProvider;
import org.apache.ibatis.type.JdbcType;
import org.springframework.stereotype.Repository;
/**
*
* 代码由工具生成,请勿修改!!!
* 如果需要扩展请在其父类进行扩展
*
**/
@Repository
public interface HighGasOilGunNoMapper extends HighGasOilGunNoMapperExt {
@SelectProvider(type=HighGasOilGunNoSqlProvider.class, method="countByExample")
long countByExample(HighGasOilGunNoExample example);
@DeleteProvider(type=HighGasOilGunNoSqlProvider.class, method="deleteByExample")
int deleteByExample(HighGasOilGunNoExample example);
@Delete({
"delete from high_gas_oil_gun_no",
"where id = #{id,jdbcType=BIGINT}"
})
int deleteByPrimaryKey(Long id);
@Insert({
3 years ago
"insert into high_gas_oil_gun_no (gas_oil_price_id, store_id, ",
"oil_no, oil_no_name, ",
"oil_type, oil_type_name, ",
"gun_no, `status`, create_time, ",
3 years ago
"ext_1, ext_2, ext_3)",
3 years ago
"values (#{gasOilPriceId,jdbcType=BIGINT}, #{storeId,jdbcType=BIGINT}, ",
"#{oilNo,jdbcType=INTEGER}, #{oilNoName,jdbcType=VARCHAR}, ",
"#{oilType,jdbcType=INTEGER}, #{oilTypeName,jdbcType=VARCHAR}, ",
"#{gunNo,jdbcType=INTEGER}, #{status,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, ",
3 years ago
"#{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})"
})
@Options(useGeneratedKeys=true,keyProperty="id")
int insert(HighGasOilGunNo record);
@InsertProvider(type=HighGasOilGunNoSqlProvider.class, method="insertSelective")
@Options(useGeneratedKeys=true,keyProperty="id")
int insertSelective(HighGasOilGunNo record);
@SelectProvider(type=HighGasOilGunNoSqlProvider.class, method="selectByExample")
@Results({
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true),
@Result(column="gas_oil_price_id", property="gasOilPriceId", jdbcType=JdbcType.BIGINT),
3 years ago
@Result(column="store_id", property="storeId", jdbcType=JdbcType.BIGINT),
3 years ago
@Result(column="oil_no", property="oilNo", jdbcType=JdbcType.INTEGER),
@Result(column="oil_no_name", property="oilNoName", jdbcType=JdbcType.VARCHAR),
@Result(column="oil_type", property="oilType", jdbcType=JdbcType.INTEGER),
@Result(column="oil_type_name", property="oilTypeName", jdbcType=JdbcType.VARCHAR),
@Result(column="gun_no", property="gunNo", jdbcType=JdbcType.INTEGER),
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER),
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP),
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR),
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR),
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR)
})
List<HighGasOilGunNo> selectByExample(HighGasOilGunNoExample example);
@Select({
"select",
3 years ago
"id, gas_oil_price_id, store_id, oil_no, oil_no_name, oil_type, oil_type_name, ",
"gun_no, `status`, create_time, ext_1, ext_2, ext_3",
3 years ago
"from high_gas_oil_gun_no",
"where id = #{id,jdbcType=BIGINT}"
})
@Results({
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true),
@Result(column="gas_oil_price_id", property="gasOilPriceId", jdbcType=JdbcType.BIGINT),
3 years ago
@Result(column="store_id", property="storeId", jdbcType=JdbcType.BIGINT),
3 years ago
@Result(column="oil_no", property="oilNo", jdbcType=JdbcType.INTEGER),
@Result(column="oil_no_name", property="oilNoName", jdbcType=JdbcType.VARCHAR),
@Result(column="oil_type", property="oilType", jdbcType=JdbcType.INTEGER),
@Result(column="oil_type_name", property="oilTypeName", jdbcType=JdbcType.VARCHAR),
@Result(column="gun_no", property="gunNo", jdbcType=JdbcType.INTEGER),
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER),
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP),
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR),
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR),
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR)
})
HighGasOilGunNo selectByPrimaryKey(Long id);
@UpdateProvider(type=HighGasOilGunNoSqlProvider.class, method="updateByExampleSelective")
int updateByExampleSelective(@Param("record") HighGasOilGunNo record, @Param("example") HighGasOilGunNoExample example);
@UpdateProvider(type=HighGasOilGunNoSqlProvider.class, method="updateByExample")
int updateByExample(@Param("record") HighGasOilGunNo record, @Param("example") HighGasOilGunNoExample example);
@UpdateProvider(type=HighGasOilGunNoSqlProvider.class, method="updateByPrimaryKeySelective")
int updateByPrimaryKeySelective(HighGasOilGunNo record);
@Update({
"update high_gas_oil_gun_no",
"set gas_oil_price_id = #{gasOilPriceId,jdbcType=BIGINT},",
3 years ago
"store_id = #{storeId,jdbcType=BIGINT},",
3 years ago
"oil_no = #{oilNo,jdbcType=INTEGER},",
"oil_no_name = #{oilNoName,jdbcType=VARCHAR},",
"oil_type = #{oilType,jdbcType=INTEGER},",
"oil_type_name = #{oilTypeName,jdbcType=VARCHAR},",
"gun_no = #{gunNo,jdbcType=INTEGER},",
"`status` = #{status,jdbcType=INTEGER},",
"create_time = #{createTime,jdbcType=TIMESTAMP},",
"ext_1 = #{ext1,jdbcType=VARCHAR},",
"ext_2 = #{ext2,jdbcType=VARCHAR},",
"ext_3 = #{ext3,jdbcType=VARCHAR}",
"where id = #{id,jdbcType=BIGINT}"
})
int updateByPrimaryKey(HighGasOilGunNo record);
}