Giter VIP home page Giter VIP logo

payment-hexagonal's Introduction

payment-hexagonal

java17, Spring boot 3.0, hexagonal 아키텍처를 이용한 결제시스템


목차


개발환경

  1. BE
    • java 17
    • Spring boot 3.0.0
    • jpa (querydsl)
    • gradle
  2. DB
    • h2
  3. DOCS
    • javadoc
  4. ARCHITECTURE
    • DDD
    • hexagonal

테이블설계

create table PAYMENT_TRANSACTION (
    MNG_NO varchar(255) not null, 
    CARD_INFO varchar(255), 
    INSTALL_MONTHS bigint, 
    PRICE bigint, 
    STATUS varchar(255), 
    VAT bigint, 
    SUB_MNG_NO varchar(255), 
    primary key (MNG_NO),
    foreign key (SUB_MNG_NO) references PAYMENT_TRANSACTION.MNG_NO
);
comment on table PAYMENT_TRANSACTION is '결제 트랜잭션';
comment on column PAYMENT_TRANSACTION.MNG_NO is '관리번호';
comment on column PAYMENT_TRANSACTION.CARD_INFO is '카드정보(암호화)';
comment on column PAYMENT_TRANSACTION.INSTALL_MONTHS is '할부개월수';
comment on column PAYMENT_TRANSACTION.PRICE is '결제금액';
comment on column PAYMENT_TRANSACTION.STATUS is '결제상태';
comment on column PAYMENT_TRANSACTION.VAT is '부가가치세';
comment on column PAYMENT_TRANSACTION.SUB_MNG_NO is '결제트랜잭션 관리번호';

패키지구조

img.png

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.