修改项目名和模块名为qomo-kn-cost-manage
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<groupId>com.zzsmart.qomo</groupId>
|
||||
<artifactId>qomo-kn-forecast</artifactId>
|
||||
<version>${revision}</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>qomo-kn-cost-manage</artifactId>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>8</maven.compiler.source>
|
||||
<maven.compiler.target>8</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.qomo.boot</groupId>
|
||||
<artifactId>qomo-system-biz</artifactId>
|
||||
<version>2.0.1-SNAPSHOT</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
package com.zzsmart.qomo.kn.cost.manage.constants;
|
||||
|
||||
import cn.hutool.core.collection.CollUtil;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author WangBo
|
||||
* @since 2024/5/17 下午3:05
|
||||
*/
|
||||
public interface Constants {
|
||||
|
||||
String TRACK = "轨道总部";
|
||||
|
||||
List<String> BUSINESS_SEGMENTS = CollUtil.newArrayList("国内业务", "维保业务", "海外业务", "安全门业务", "汽车门业务", "内装业务");
|
||||
|
||||
List<String> PROFIT_ITEM_NAMES = CollUtil.newArrayList(
|
||||
"一、营业总收入",
|
||||
"其中:营业成本",
|
||||
"税金及附加",
|
||||
"销售费用",
|
||||
"管理费用",
|
||||
"研发费用",
|
||||
"财务费用",
|
||||
"二、营业总成本",
|
||||
"加:其他收益",
|
||||
"投资收益(损失以“-”号填列)",
|
||||
"公允价值变动收益(损失以“-”号填列)",
|
||||
"信用减值损失(损失以“-”号填列)",
|
||||
"资产减值损失(损失以“-”号填列)",
|
||||
"资产处置收益(损失以“-”号填列)",
|
||||
"三、营业利润",
|
||||
"加:营业外收入",
|
||||
"减:营业外支出",
|
||||
"四、利润总额",
|
||||
"减:所得税费用",
|
||||
"五、净利润",
|
||||
"六、归属于母公司的净利润",
|
||||
"八、关键指标",
|
||||
"产品毛利率",
|
||||
"期间费用",
|
||||
"期间费用率",
|
||||
"净利率");
|
||||
}
|
||||
Reference in New Issue
Block a user