前言:本文以学习记录的形式发表出来,前段时间苦于照模型聚合中group by 找了很久,官方文章中没有很明确的说出group by,但在文档中有提到!!!模型提高部分:聚合:LOrder.objects.values('com_chnl_name').annotate(Count('serv_id'...
分类:
其他好文 时间:
2016-01-12 15:22:40
阅读次数:
157
Git 命令速查表1、常用的Git命令命令简要说明git add添加至暂存区git add-interactive交互式添加git apply应用补丁git am 应用邮件格式补丁git annotate同义词,等同于git blamegit archive文档归档打包git bisect二分查找....
分类:
其他好文 时间:
2015-12-25 15:03:45
阅读次数:
249
前言:发现一个不错的注入框架,为了偷懒,还是拿来用了,其实我不是一个喜欢偷懒的码农,但 … …
Introduction
Annotate fields with @Bind and a view ID for Butter Knife to find and automatically cast the corresponding view in your layout.
class ExampleActivity extends Activity {
@Bind(R.id.title) Te...
分类:
移动开发 时间:
2015-11-11 16:42:02
阅读次数:
297
java代码对象如下: package?com.evideostb.billsystem.module.model;
import?org.codehaus.jackson.map.annotate.JsonSerialize;
import?com.fasterxml.jackson.annotation.JsonIgnore;
import?com.faste...
分类:
编程语言 时间:
2015-10-12 19:34:46
阅读次数:
299
闲着没事从网上搜集了一些 Git的命令 整理整理1、常用的Git命令
命令
简要说明
特别注释 git add
添加至暂存区
git add–interactive
交互式添加
git apply
应用补丁
git am
应用邮件格式补丁
git annotate
注释文件行提交信息
等同于 git blame
git...
分类:
其他好文 时间:
2015-08-28 17:48:47
阅读次数:
186
二、 Git 命令速查表 1、常用的Git命令 命令 简要说明 git add 添加至暂存区 git add–interactive 交互式添加 git apply 应用补丁 git am 应用邮件格式补丁 git annotate 同义词,等同于 git blame git archive ...
分类:
其他好文 时间:
2015-06-24 14:47:45
阅读次数:
111
在用matplotlib绘图需要在图片中加入公式时,一般要用 text 或 annotate函数,并结合latex语法 '$...$'。对于分数,如果直接使用\frac{}{},会造成分子分母上的字都很小,如下图中的绿色公式所示。解决这个问题需要用到 \displaystyle,即使用 '$\dis...
分类:
编程语言 时间:
2015-06-06 22:05:00
阅读次数:
1048
from django.db.models import CountMembers.objects.values('designation').annotate(dcount=Count('designation'))
分类:
其他好文 时间:
2015-05-21 18:43:50
阅读次数:
145
错误信息:FieldError:Cannotresolvekeyword‘entry‘intofield.Choicesare:xx,xx,xx,Models:classAmi(models.Model):
.....
classAcidAdmin(admin.ModelAdmin):
list_display=[‘id‘,....]
#list_filter=(.....)
classEntry(models.Model):
msn=models.ForeignKey(Ami)
........
分类:
其他好文 时间:
2015-01-23 11:24:20
阅读次数:
349
在Spring3.2中返回Json字符串,过滤掉不需要的Bean中属性对应Json中key的value=null的值,可以同过在Bean中加入注解的方式来过滤使用jackson-all-1.8.1.jar包,在需要序列化输出Json的类上添加如***解importorg.codehaus.jackson.map.annotate.JsonSerialize;
@JsonSerialize(..
分类:
编程语言 时间:
2014-12-29 15:29:46
阅读次数:
152