ソースを参照

add:添加部署信息

zoie 2 ヶ月 前
コミット
80e0e4d310
2 ファイル変更13 行追加2 行削除
  1. 12 1
      README.md
  2. 1 1
      models/Salary/Salary.go

+ 12 - 1
README.md

@@ -12,4 +12,15 @@ go mod edit -replace git.baozhida.cn/ERP_libs=${Yours_Path}/ERP_libs
 ### 注意事项
 在宝塔通过请求头获取数据
 在配置文件添加
-underscores_in_headers on
+underscores_in_headers on
+
+## 项目部署
+
+### 1、修改配置文件
+conf/app.conf
+
+### 2、打包linux二进制包
+GOOS=linux GOARCH=amd64 go build ERP_salary.go
+
+### 3、启动服务
+./ERP_salary

+ 1 - 1
models/Salary/Salary.go

@@ -28,7 +28,7 @@ type Salary struct {
 	T_unemployment_insurance  float32 `orm:"digits(12);decimals(2)"` // 需缴纳失业保险
 	T_medical_insurance       float32 `orm:"digits(12);decimals(2)"` // 需缴医疗保险
 	T_large_medical_insurance float32 `orm:"digits(12);decimals(2)"` // 需缴大额医疗保险
-	T_housing_fund            float32 `orm:"digits(12);decimals(2)"` // 需缴住房公积金
+	T_housing_fund            float32 `orm:"digits(12);decimals(2)"` // 需缴住房公积金MergeCell
 	T_tax                     float32 `orm:"digits(12);decimals(2)"` // 需缴个人所得税
 	T_remark                  string  `orm:"type(text);null"`
 	T_State                   int     `orm:"size(20);default(1)"` //  1 未发送 2 已发送 3-未提交