mirror of
https://github.com/Karaka-Management/oms-InvestmentManagement.git
synced 2026-02-17 12:48:42 +00:00
Quick backup before crash
This commit is contained in:
parent
bfda93fd6d
commit
208ae3a315
|
|
@ -1,9 +1,30 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* Karaka
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\InvestmentManagement\Models
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Modules\InvestmentManagement\Models;
|
||||||
|
|
||||||
use Modules\Admin\Models\Account;
|
use Modules\Admin\Models\Account;
|
||||||
use phpOMS\Business\Finance\DepreciationType;
|
use phpOMS\Business\Finance\DepreciationType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Investment model.
|
||||||
|
*
|
||||||
|
* @package Modules\InvestmentManagement\Models
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @link https://orange-management.org
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
class Investment
|
class Investment
|
||||||
{
|
{
|
||||||
public int $id = 0;
|
public int $id = 0;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,27 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* Karaka
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\InvestmentManagement\Models
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Modules\InvestmentManagement\Models;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Investment object.
|
||||||
|
*
|
||||||
|
* @package Modules\InvestmentManagement\Models
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @link https://orange-management.org
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
class InvestmentObject
|
class InvestmentObject
|
||||||
{
|
{
|
||||||
public int $id = 0;
|
public int $id = 0;
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,30 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* Karaka
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\InvestmentManagement\Models
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Modules\InvestmentManagement\Models;
|
||||||
|
|
||||||
use phpOMS\Business\Finance\DepreciationType;
|
use phpOMS\Business\Finance\DepreciationType;
|
||||||
use phpOMS\Stdlib\Base\FloatInt;
|
use phpOMS\Stdlib\Base\FloatInt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Costs/Earnings.
|
||||||
|
*
|
||||||
|
* @package Modules\InvestmentManagement\Models
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @link https://orange-management.org
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
class Money
|
class Money
|
||||||
{
|
{
|
||||||
public int $id = 0;
|
public int $id = 0;
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,29 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* Karaka
|
||||||
|
*
|
||||||
|
* PHP Version 8.1
|
||||||
|
*
|
||||||
|
* @package Modules\InvestmentManagement\Models
|
||||||
|
* @copyright Dennis Eichhorn
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @version 1.0.0
|
||||||
|
* @link https://jingga.app
|
||||||
|
*/
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Modules\InvestmentManagement\Models;
|
||||||
|
|
||||||
use phpOMS\Localization\BaseStringL11n;
|
use phpOMS\Localization\BaseStringL11n;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Money type (one off cost, recurring, earnings).
|
||||||
|
*
|
||||||
|
* @package Modules\InvestmentManagement\Models
|
||||||
|
* @license OMS License 2.0
|
||||||
|
* @link https://orange-management.org
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
class MoneyType
|
class MoneyType
|
||||||
{
|
{
|
||||||
public int $id = 0;
|
public int $id = 0;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user