Browse Source

add:添加部署信息

zoie 2 months ago
parent
commit
e120254086
2 changed files with 15 additions and 2 deletions
  1. 14 1
      README.md
  2. 1 1
      models/Attendance/Attendance.go

+ 14 - 1
README.md

@@ -6,4 +6,17 @@ git config --global url."git@git.baozhida.cn/ERP_libs".insteadOf "http://120.55.
 
 ### 导入本地库
 
-go mod edit -replace git.baozhida.cn/ERP_libs=${Yours_Path}/ERP_libs
+go mod edit -replace git.baozhida.cn/ERP_libs=${Yours_Path}/ERP_libs
+
+
+
+## 项目部署
+
+### 1、修改配置文件
+conf/app.conf
+
+### 2、打包linux二进制包
+GOOS=linux GOARCH=amd64 go build ERP_ams.go
+
+### 3、启动服务
+./ERP_ams

+ 1 - 1
models/Attendance/Attendance.go

@@ -24,7 +24,7 @@ type Attendance struct {
 	T_uid        string    `orm:"index;size(32);null"`   // 用户uuid
 	T_type       int       `orm:"size(20);default(0)"`   // 加班类型  加班
 	T_start_time time.Time `orm:"type(timestamp);null;"` // 开始时间
-	T_prove_img  string    `orm:"size(200);null;"`       // 请假证明
+	T_prove_img  string    `orm:"type(text);null;"`      // 请假证明
 	T_end_time   time.Time `orm:"type(timestamp);null;"` // 结束时间
 	T_duration   int       `orm:"size(8);null"`          // 加班时长
 	T_text       string    `orm:"type(text);null"`       // 请假内容