power designer 水电费缴纳系统的设计

Posted HRZJ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了power designer 水电费缴纳系统的设计相关的知识,希望对你有一定的参考价值。

 

alter table POWER
   drop constraint FK_POWER_REFERENCE_USERS;

drop table POWER cascade constraints;

/*==============================================================*/
/* Table: POWER                                                 */
/*==============================================================*/
create table POWER 
(
   POWER_NUM            NUMBER               not null,
   USERS_ID             VARCHAR2(12)         not null,
   POWER_YESORNO        VARCHAR2(3)          not null,
   POWER_TIME           DATE,
   POWER_ACCOUNT        NUMBER(9,2)          not null,
   TODAYPOWER           NUMBER(9,2)          not null,
   POWER_MONEY          NUMBER(9,2)          not null,
   POWER_SUM            NUMBER(9,2)          not null,
   constraint PK_POWER primary key (POWER_NUM)
);

comment on table POWER is
\'电费缴纳信息表\';

comment on column POWER.POWER_NUM is
\'缴费编号\';

comment on column POWER.USERS_ID is
\'用户id\';

comment on column POWER.POWER_YESORNO is
\'是否缴费\';

comment on column POWER.POWER_TIME is
\'缴费时间\';

comment on column POWER.POWER_ACCOUNT is
\'本月用电量\';

comment on column POWER.TODAYPOWER is
\'当前水费标准\';

comment on column POWER.POWER_MONEY is
\'本月应缴费用\';

comment on column POWER.POWER_SUM is
\'截至上月共计电费金额\';

alter table POWER
   add constraint FK_POWER_REFERENCE_USERS foreign key (USERS_ID)
      references USERS (USERS_ID);

alter table WATER
   drop constraint FK_WATER_REFERENCE_USERS;

drop table WATER cascade constraints;

/*==============================================================*/
/* Table: WATER                                                 */
/*==============================================================*/
create table WATER 
(
   WATER_NUM            NUMBER               not null,
   USERS_ID             VARCHAR(12),
   WATER_YESORNO        VARCHAR2(3)          not null,
   WATER_TIME           DATE,
   WATER_ACCOUNT        NUMBER(9,2)          not null,
   TODAYWATER           NUMBER(9,2)          not null,
   WATER_MONEY          NUMBER(9,2)          not null,
   WATER_SUM            NUMBER               not null,
   constraint PK_WATER primary key (WATER_NUM)
);

comment on table WATER is
\'水费缴纳信息表\';

comment on column WATER.WATER_NUM is
\'缴费编号\';

comment on column WATER.USERS_ID is
\'用户id\';

comment on column WATER.WATER_YESORNO is
\'是否缴费\';

comment on column WATER.WATER_TIME is
\'缴费时间\';

comment on column WATER.WATER_ACCOUNT is
\'本月用水量\';

comment on column WATER.TODAYWATER is
\'当前水费标准\';

comment on column WATER.WATER_MONEY is
\'本月应缴费用\';

comment on column WATER.WATER_SUM is
\'截至上月共计水费金额\';

alter table WATER
   add constraint FK_WATER_REFERENCE_USERS foreign key (USERS_ID)
      references USERS (USERS_ID);

 

以上是关于power designer 水电费缴纳系统的设计的主要内容,如果未能解决你的问题,请参考以下文章

数字货币钱包Vpay系统源码解析

删除列Table.RemoveColumns(Power Query 之 M 语言)

删除其他列Table.SelectColumns(Power Query 之 M 语言)

Table.AlternateRows删除间隔….Alternate…(Power Query 之 M 语言)

Design Compiler Power Simulation

Table.LastN保留后面N….Last…(Power Query 之 M 语言)