Skip to content
think-css edited this page Oct 12, 2016 · 9 revisions

用户钱包表(包含用户余额、优惠券余额)

字段说明

ID 用户身份证
优惠券余额  推荐邀请得到的优惠券
钱包余额

## 表

create table STAGE_USER_RMB
(
  ID VARCHAR2(256) not null,
  coupon NUMBER,
	money NUMBER,
  update_date date default sysdate
)

Clone this wiki locally