Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

CnChunfeng / crm_server

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Find file
Normal viewHistoryPermalink
Switch branch/tag
  • crm_server
  • internal
  • model
  • assign_active.go
assign_active.go 1.12 KB
Joneq's avatar
增加发送钉钉消息
bd9f7432
 
Joneq committed 5 years ago
1 2 3 4 5 6 7 8 9
package model

type AssignActive struct {
	Id				int		`json:"id"`
	User_Id			int		`json:"user_id"`
	Turn_Out_id		int		`json:"turn_out_id"`
	Turn_In_id		int		`json:"turn_in_id"`
	Assign_id		int		`json:"assign_id"`
	Is_Success		int		`json:"is_success"`
Joneq's avatar
success user pond
24608f43
 
Joneq committed 5 years ago
10
	No_Create_Order	int		`json:"no_create_order"`
Joneq's avatar
增加发送钉钉消息
bd9f7432
 
Joneq committed 5 years ago
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
	Change_Time		int		`json:"change_time"`
	Create_time		int		`json:"create_time"`
}


/*
CREATE TABLE `lie_assign_active` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '转入接收日志',
  `user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '用户ID',
  `turn_out_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '转出人ID',
  `turn_in_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '转入人ID',
  `assign_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '分配人ID',
  `is_success` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否成功',
  `change_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '变更时间',
  `create_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='转入接收日志表';
*/