feat: ga-core + ga-api + ga-batch + V13-V15 + Docker + frontend skeleton

ga-core (22 tables):
- user/role: VO + Mapper + XML (login + RBAC)
- org: Grade, Organization (CTE recursive tree), Agent + history
- product: InsuranceCompany, Product, Contract
- rule: CommissionRate, PayoutRule, OverrideRule, ChargebackRule, ExceptionTypeCode
- receive: CompanyProfile, FieldMapping, CodeMapping, RawCommissionData, ParseError
- ledger: Recruit, Maintain, Exception (batch insert + cursor)
- settle: SettleMaster (UPSERT), Override, Chargeback, Payment, Reconciliation, BatchJobLog
- All XMLs use EncryptTypeHandler for PII fields

ga-api:
- AuthController: login (lock on N fails), refresh, me, password, logout
- Domain controllers: Agent, Organization, Contract, Company, Product, Rule,
  Receive, Ledger (recruit/maintain/exception + approve), Settle (confirm/hold/release),
  Payment, User, Role (matrix), BatchTrigger
- All use @RequirePermission + @DataChangeLog

ga-batch:
- MonthlySettlementJob: 8 Steps (receiveData, transformData, reconcile,
  calcRecruit, calcMaintain, chargebackException, calcOverride, aggregate)
- DataReceiver strategy + ManualReceiver, MappingEngine stub
- CommissionCalculator (pct/tax via MoneyUtil), JobLauncherController

DB V13~V15:
- V13: 14 indexes (settle_master, ledgers, contract, chargeback, payment, raw, logs)
- V14: create_monthly_partition() helper function
- V15: v_agent_monthly_summary, v_org_settle_summary, v_chargeback_risk views

Infra:
- docker-compose: postgres + redis + api + batch + frontend
- Multi-stage Dockerfile (gradle build → JRE)

ga-frontend (skeleton):
- Vite + React 18 + TypeScript + AntD 5 + AG Grid + React Query + Zustand
- API request layer (axios + JWT), LoginPage, MainLayout (dynamic menu), Dashboard
- nginx.conf for /api proxying
This commit is contained in:
GA Pro
2026-05-09 22:00:53 +09:00
parent cef4e48e27
commit 7f3c564605
147 changed files with 6987 additions and 79 deletions
+72
View File
@@ -0,0 +1,72 @@
import { Layout, Menu, Dropdown, Badge, Space, Avatar, Button } from 'antd';
import { useNavigate, Outlet } from 'react-router-dom';
import { useQuery } from '@tanstack/react-query';
import { BellOutlined, UserOutlined, LogoutOutlined } from '@ant-design/icons';
import { menuApi, MenuResp } from '@/api/menu';
import { authApi } from '@/api/auth';
import { useAuthStore } from '@/stores/auth';
const { Header, Sider, Content } = Layout;
function toMenuItems(menus: MenuResp[]): any[] {
return menus.map((m) => ({
key: m.menuPath ?? m.menuCode,
label: m.menuName,
children: m.children?.length ? toMenuItems(m.children) : undefined,
}));
}
export default function MainLayout() {
const navigate = useNavigate();
const auth = useAuthStore();
const { data: menus = [] } = useQuery({
queryKey: ['menu', 'my'],
queryFn: menuApi.myMenus,
});
const handleLogout = async () => {
try { await authApi.logout(); } catch { /* ignore */ }
localStorage.removeItem('accessToken');
localStorage.removeItem('refreshToken');
auth.clear();
navigate('/login');
};
return (
<Layout style={{ minHeight: '100vh' }}>
<Header style={{ display: 'flex', justifyContent: 'space-between',
background: '#001529', color: '#fff' }}>
<div style={{ fontSize: 18, fontWeight: 600 }}>GA </div>
<Space>
<Badge count={0}>
<Button type="text" icon={<BellOutlined style={{ color: '#fff' }} />} />
</Badge>
<Dropdown menu={{
items: [
{ key: 'logout', label: '로그아웃', icon: <LogoutOutlined />, onClick: handleLogout },
],
}}>
<Space style={{ color: '#fff', cursor: 'pointer' }}>
<Avatar size="small" icon={<UserOutlined />} />
{auth.userName ?? auth.loginId}
</Space>
</Dropdown>
</Space>
</Header>
<Layout>
<Sider width={240} theme="light">
<Menu
mode="inline"
items={toMenuItems(menus)}
onClick={({ key }) => navigate(String(key))}
style={{ borderRight: 0, height: '100%' }}
/>
</Sider>
<Content style={{ padding: 24 }}>
<Outlet />
</Content>
</Layout>
</Layout>
);
}