摘要: 学习中~ 知识搬运工:https://www.jianshu.com/p/79067827744c 新债配号是指投资者在申购新债后,所给出的号码。一般来说投资者进行新债申购时都是进行顶格申购,即申购10000股,1000个配号。每个申购者分配一个起始配号,如果其配号与中签号匹配,则表明投资者中签,如 阅读全文
posted @ 2021-08-31 09:17 DDiamondd 阅读(327) 评论(0) 推荐(0) 编辑
摘要: PL/SQL Developer 和 对应的汉化包 : https://www.allroundautomations.com/registered-plsqldev/ Oracle Instant Client: https://www.oracle.com/database/technologi 阅读全文
posted @ 2020-09-08 09:30 DDiamondd 阅读(494) 评论(0) 推荐(0) 编辑
摘要: 创建类Person 1 class Person: 2 def __init__(self, name, age): 3 self.name = name 4 self.age = age 5 pass 在上诉的__init__()方法中,有name, age, 在对象实例化的时候就必须要传递两个参 阅读全文
posted @ 2020-06-11 21:45 DDiamondd 阅读(1534) 评论(0) 推荐(0) 编辑
摘要: 微信开发文档:https://developers.weixin.qq.com/doc/offiaccount/Message_Management/Template_Message_Interface.html 1、新增模板接口: 1 // 构造方法 get() set()都没写 2 public 阅读全文
posted @ 2020-06-04 11:15 DDiamondd 阅读(2187) 评论(0) 推荐(0) 编辑
摘要: 即网页授权(微信开发文档:https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_webpage_authorization.html) 准备工作:(在自己的公众号里面进行设置) 微信公众号-自定义菜单 1、引导用户进入 阅读全文
posted @ 2020-06-04 09:52 DDiamondd 阅读(899) 评论(0) 推荐(0) 编辑
摘要: https://www.bilibili.com/video/BV1nb411P76t?p=12 微信开发文档:https://developers.weixin.qq.com/doc/offiaccount/Custom_Menus/Creating_Custom-Defined_Menu.htm 阅读全文
posted @ 2020-06-04 09:21 DDiamondd 阅读(359) 评论(0) 推荐(0) 编辑
摘要: 1、String类型的时间转换成Data 1 String d1 = "2020-06-04 08:07:00"; 2 SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); // 参数要与需要转换的时间的 阅读全文
posted @ 2020-06-04 08:27 DDiamondd 阅读(270) 评论(0) 推荐(0) 编辑
摘要: https://www.bilibili.com/video/BV1nb411P76t?p=7 以图文消息为例 1、创建对应的实体: 1 public class ResponseMessage { 2 private String toUserName; 3 private String from 阅读全文
posted @ 2020-06-01 22:00 DDiamondd 阅读(755) 评论(0) 推荐(0) 编辑
摘要: 在开发微信公众号 添加菜单时遇到问题 一直提示:{"errcode":40017,"errmsg":"invalid button type hint: [I8nq_a0783sha1]"} 原因是:各个Button类中,属性type没有对应getType()方法,导致在生成的json字符串中就没有 阅读全文
posted @ 2020-03-24 23:54 DDiamondd 阅读(1061) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/28770909/xstream-processannotations 我遇到这个问题的原因是xstream.jar的版本问题 现在用的xstream-1.4.11.1.jar 正常 下载地址:https://www.mvnja 阅读全文
posted @ 2020-02-29 20:53 DDiamondd 阅读(1182) 评论(0) 推荐(0) 编辑
TOP