2011年11月20日

摘要: mysite/feed/models.py#!/usr/bin/python# -*- coding: utf-8 -*-from django.db import modelsfrom django.db.models import F class Account(models.Model): """ 账户""" balance = models.DecimalField('余额', max_digits=19, decimal_places=4) version = models.IntegerField(' 阅读全文
posted @ 2011-11-20 15:32 ddper 阅读(1417) 评论(1) 推荐(1) 编辑

导航