select f_id,
               f_pid,
               f_cntrid,
               f_price,
               f_status,
               create_by,
               create_time,
               update_by,
               update_time,
               remark
        from t_ctnprice_items
    
    
    
    
        insert into t_ctnprice_items
        
            f_pid,
            f_cntrid,
            f_price,
            f_status,
            create_by,
            create_time,
            update_by,
            update_time,
            remark,
        
        
            #{fPid},
            #{fCntrid},
            #{fPrice},
            #{fStatus},
            #{createBy},
            #{createTime},
            #{updateBy},
            #{updateTime},
            #{remark},
        
    
    
        update t_ctnprice_items
        
            f_pid = #{fPid},
            f_cntrid = #{fCntrid},
            f_price = #{fPrice},
            f_status = #{fStatus},
            create_by = #{createBy},
            create_time = #{createTime},
            update_by = #{updateBy},
            update_time = #{updateTime},
            remark = #{remark},
        
        where f_id = #{fId}
    
    
        delete
        from t_ctnprice_items
        where f_id = #{fId}
    
    
        delete from t_ctnprice_items where f_id in
        
            #{fId}
        
    
    
        delete
        from t_ctnprice_items
        where f_pid = #{fPid}
    
    
        delete from t_ctnprice_items where f_pid in
        
            #{fPid}