04 2020 档案
摘要:1.所有业务层接口继承 IService<T>,T表示实体类 public interface IAgentServiceRuleService extends IService<AgentServiceRule> {} 2.所有业务层接口实现类 继承 ServiceImpl<TMapper,T>类
阅读全文
摘要:一、基本操作 1.初始化仓库:git init 2.将文件添加到暂存库:git add 文件名称 3.将文件提交到本地仓库:git commit -m '注释内容' 文件名称 4.查看完整格式日志:git log 5.查看日志显示一行并且显示完整hash值:git log --pretty=onel
阅读全文