9月3日 分布式缓存 周一

"1.0" encoding="UTF-8" ?>
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
namespace="com.hao.mapper.ICustomerMapper">
    <select id="findCustomerList" resultType="com.hao.dto.Customer">
        select * from t_customer order by datetime
    select>
    <select id="mohuList" parameterType="String" resultType="com.hao.dto.Customer">
        select * from t_customer where datetime=#{mohu}
    select>

    <select id="getCustomer" parameterType="int" resultType="com.hao.dto.Customer">
        select * from t_customer where id = #{id}
    select>

    "update" parameterType="com.hao.dto.Customer">
        update t_customer set datetime=#{datetime},name=#{name},tel=#{tel},name2=#{name2},dept=#{dept},high=#{high} where id=#{id}
    

    "add" parameterType="com.hao.dto.Customer">
        insert into t_customer values(#{id},#{datetime},#{name},#{tel},#{name2},#{dept},#{high})
    

    "del" parameterType="int">
        delete from t_customer where id = #{id}
    

    

**活着便是受苦,要活下去,便要由痛苦中找出意义。如果人生真有一点目的,痛苦和死亡必定有其目的。
“懂得‘为何’而活的人,差不多‘任何’痛苦都忍受得住。**

——弗兰克尔《追寻生命的意义》

你可能感兴趣的:(2018)