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"`
	No_Create_Order	int		`json:"no_create_order"`
	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='转入接收日志表';
*/