Office like a game, enabling OA system transformation


foreword

Office currency OAC is a blockchain-based, P2P-based cryptocurrency. In the new OA system, when employees complete different to-do tasks, the OACoin distribution center will give corresponding token rewards, and the obtained currency can also be traded in the blockchain. Break the traditional boring OA office mode, stimulate employees' enthusiasm for office work, work like a game, and empower the transformation of the OA system.


1. Overview of OACoin

The concept of Office Coin (full name Office Automation Coin, referred to as OACoin or OAC) was first proposed by Wang Dongpeng in November 2022. It is a blockchain-based, P2P-based cryptocurrency. OAC is generated from the new OA system, which is inspired by "mining" and used as a token for the reward mechanism. Compared with the traditional OA system, the reward mechanism management mode is embedded in the new OA system, and rewards are formulated according to the type of to-do and processing time (OACoin=to-do score*processing time coefficient%), and can be referred to the workload of employees included in the performance appraisal A capability indicator for certification, and a quantitative index to measure the carbon emission reduction of paperless office. Dimensionality reduction develops a new office model, taps the potential capabilities of employees, and does not bury incompetent employees. Break the traditional boring OA office system model and stimulate employees' enthusiasm for office work. The bottom layer of the technical architecture is based on the blockchain, and the front-end develops smart contract scripts, using the decentralized and non-tamperable trust system of the blockchain, to transform the traditional OA office model on the OAC chain. Break through the bottleneck of the existing business system and promote the sustainable development of the OA system.

Two, the code

pseudocode:

// 最小交易数量(单位:墨)
public static float minimumOACoin = 1.0f;
// OAC下发中心,链上所有交易地址都指向这里
Wallet oacoinbase = new Wallet();
// 获得OAC奖励
public float getOACoinNum(int taskGrade, long processTime){
    
    
	return taskGrade * processTime / 100 * minimumOACoin;
}

Summarize

The above is what I want to talk about today. At present, OAC is just a concept, and the commercial value behind it has yet to be discovered.

Guess you like

Origin blog.csdn.net/qq_37980551/article/details/127915434