码迷,mamicode.com
首页 >  
搜索关键字:name    ( 94827个结果
利用oracle定时任务生成每月从1开始的流水号
--创建序列 --入库create sequence rk_seq;--出库create sequence ck_seq;--移库create sequence yk_seq; --创建存储过程 create or replace procedure reset_seq(rk_seq_name in ...
分类:数据库   时间:2021-03-26 15:15:11    阅读次数:0
.net core api 接收参数
1.HttpGet请求 ①.一点参数 [HttpGet] public string TestGet(string name) { return name; } ②.一些参数(Test是自定义实体接收参数类) [HttpGet] public string TestGet([FromQuery] T ...
分类:Windows程序   时间:2021-03-26 15:13:56    阅读次数:0
git的使用
工作区:代码编辑部分 暂存区:git add 本地仓库 git commit git 配置 git config --global user.name "" git config --global user.email "" git config --global --list ctril +l清屏 ...
分类:其他好文   时间:2021-03-26 15:12:55    阅读次数:0
3.17学习总结.listview用法总结
今天复习了listview控件的用法。 1.activity_main.xml 中的代码,如下: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/re ...
分类:其他好文   时间:2021-03-18 14:30:14    阅读次数:0
原型链和原型的继承
原型对象 原型的引入 function Person(name, age, gender) { this.name = name; this.age = age; this.gender = gender; //向对象中添加一个方法 this.sayName = function () { cons ...
分类:其他好文   时间:2021-03-18 14:22:02    阅读次数:0
xamarin-参照微软官方文档示例(MVVM)视图和视图模型设置了自动绑定,不能实例化页面异常
xmlns:viewModelBase="clr-namespace:JKSY.ViewModels.Base;assembly=JKSY" viewModelBase:ViewModelLocator.AutoWireViewModel="true"> 使用这个自动绑定,然后页面进行实例化的时候, ...
分类:其他好文   时间:2021-03-18 14:09:13    阅读次数:0
Description相关
public static class DescriptionUtil { /// <summary> /// 获得枚举的Description /// </summary> /// <param name="value">枚举值</param> /// <param name="nameInste ...
分类:其他好文   时间:2021-03-18 14:08:16    阅读次数:0
springboot项目中,ehcache报错,需要CacheManager单例的解决办法
在新的springboot项目中,如果在mybatis中使用了ehcache后,再第二次使用ehcache,会提示错误 Another CacheManager with same name 'default' already exists in the same VM. Please provid ...
分类:编程语言   时间:2021-03-18 13:59:58    阅读次数:0
C# List去重DistinctBy扩展
list 去重扩展: public static IEnumerable<TSource> DistinctBy<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector) { HashSet<T ...
分类:Windows程序   时间:2021-03-17 15:08:29    阅读次数:0
日志 携带变量 输出
public void fun() { String name="who"; String passwd="666"; log.info("name:{},passwd,{}",name,passwd); } ...
分类:其他好文   时间:2021-03-17 15:04:20    阅读次数:0
94827条   上一页 1 ... 91 92 93 94 95 ... 9483 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!