Employee(EID)
Customer(CID, EID)
Log(CID, Timestamp)
Insert Employee (EID) VALUES (1);
Insert Employee (EID) VALUES (2);
Insert Customer (CID, EID) VALUES (1, 1);
| From 08e39ce10a6c40821c3668ef65f23972a21eb7bf Mon Sep 17 00:00:00 2001 | |
| From: dweizhe <[email protected]> | |
| Date: Thu, 29 Aug 2019 08:19:15 +0800 | |
| Subject: [PATCH] 20190829 | |
| --- | |
| index.html | 907 +++++++++++++++++++++++++++++++++++++---------------- | |
| 1 file changed, 635 insertions(+), 272 deletions(-) | |
| diff --git a/index.html b/index.html |
| const api = { | |
| addProduct: async function (req, res, next) { | |
| const newId = await this.getNewId(); | |
| res.send(newId); | |
| }, | |
| getNewId: async function (){ | |
| const { collection } = await connectDB('product_detail'); | |
| const result = await promisify( | |
| collection |
| abstract class Invoice { | |
| abstract public function validate(); | |
| } | |
| class EmailInvoice extends Invoice { | |
| public function validate() { } | |
| } | |
| class RealMailInvoice extends Invoice { | |
| public function validate() { } |
| public company$ = this.tokenService.account$ | |
| .pipe(flatMap(account => account ? this._fetchCompany(account.companyId) : null)) | |
| .pipe(shareReplay()); |
| import { Subject } from "rxjs"; | |
| class Article { | |
| title?: string; | |
| content?: string; | |
| comments?: Comment[]; | |
| } | |
| class Comment { | |
| content?: string; |
Employee(EID)
Customer(CID, EID)
Log(CID, Timestamp)
Insert Employee (EID) VALUES (1);
Insert Employee (EID) VALUES (2);
Insert Customer (CID, EID) VALUES (1, 1);
| var Calculator = function (n) { | |
| this.number = n; | |
| }; | |
| Calculator.prototype.add = function (c) { | |
| return new Calculator(this.number + c.number); | |
| }; | |
| Calculator.prototype.multiple = function (c) { | |
| return new Calculator(this.number * c.number); |
| namespace Animates { | |
| namespace Dogs { | |
| class SmallDog { | |
| } | |
| } | |
| } |
| import { SC } from "./core"; | |
| import { Global } from "./core"; | |
| @Display({ | |
| view: "/npc/kafra.js", | |
| name: "卡普拉服務人員", | |
| position: { | |
| map:"prontera", | |
| x:100, | |
| y:100 |