写法一: import com.xxx.entity.ByteDanceDataNode; import com.xxx.service.ByteDanceDataService; import com.xxx.service.DistrictService; import com.xxx.serv ...
分类:
编程语言 时间:
2020-03-03 13:21:18
阅读次数:
78
今天遇到一个我自己很少遇见的问题,我是用mybatis自动生成的entity,和dao以及mapper 。在我对数据库进行添加数据时发现mybatis报错了。Could not set property ‘id’ of ‘com.*.sys.entity’ with value ‘********’ ...
分类:
其他好文 时间:
2020-03-03 13:05:59
阅读次数:
265
前台: mark:注意传的参数 _projectService.deleteForTree(obj.id).done(function (data) { }); 后台: public bool DeleteForTree(int id) { var entity = _entityRepositor ...
分类:
Web程序 时间:
2020-03-03 12:46:34
阅读次数:
85
一、什么是HTTP?HypertextTransferProtocol(HTTP)协议(RFC7230)一种无状态的、应用层、以请求/应答方式运行的协议,它使用可扩展的语义和自描述消息格式,与基于网络的超文本信息系统灵活的互动。二、HTTP请求行与响应行请求行格式(ABNF方式描述)Request-line=methodSPrequest-targetSPHTTP-versionCRLFHTTP常
分类:
Web程序 时间:
2020-03-03 11:13:21
阅读次数:
91
一直是个痛点,这次解决了, ugui通用 using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; /// <summary> /// UGUI页签管理器 /// ...
分类:
其他好文 时间:
2020-03-02 23:21:00
阅读次数:
112
--AdminDal.csusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data; //包含Ado.Net的各类数据对象;using System.Data ...
分类:
数据库 时间:
2020-03-02 20:25:19
阅读次数:
80
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Class { class Program { static void Main(string[] args ...
HttpHelper using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Net.Security; using Syst ...
java8 新特性推出的 Lambda 表达式,即函数式编程,相信很多开发胸弟都会使用了,但是什么是函数式编程呢?别问我,我也不知道标准的定义。其核心思想是: 使用不可变值和函数,函数对一个值进行处理,映射成另一个值 。 函数接口 java8之前接口类只有方法的定义,没有实现的,Java8对接口提供 ...
分类:
其他好文 时间:
2020-03-01 12:50:02
阅读次数:
52
面向对象思想 制作仪表盘 访问修饰符,如果创建的属性字段,类,什么也不加默认为private private字段只能在类内使用 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using Syste ...