项目需求分析
- 模拟实现基于文本界面的《客户信息管理软件》。
- 该软件能够实现对客户对象的插入、修改和删除(用切片实现),并能够打印客户明细表
项目的界面设计
主菜单界面
添加客户界面
修改客户界面
删除客户界面
客户列表界面
客户关系管理的程序框架图
功能实现的代码部分:
目录:
customerView.go
package main
import (
"fmt"
"go_code/customerManage/model"
"go_code/customerManage/service"
)
type customerView struct {
//定义必要的字段
key string //接收用户输入
loop bool //表示是否循环的显示主菜单
customerService *service.CustomerService
}
// 显示所有的客户信息
func (th *customerView) list() {
//首先,获取到当前所有客户的信息(在切片中)
customers := th.customerService.List()
//显示
fmt.Println("-----------------------------客户列表-----------------------------")
fmt.Println("编号\t姓名\t性别\t年龄\t电话\t邮箱")
for i := 0; i < len(customers); i++ {
fmt.Println(customers[i].GetInfo())
}
fmt.Println("---------------------------客户列表完成-----------------------------")
}
// 得到用户的输入信息,构建新的客户,并完成添加
func (th *customerView) add() {
fmt.Println("-----------------添加客户----------------")
fmt.Println("姓名:")
name := ""
fmt.Scanln(&name)
fmt.Println("性别:")
gender := ""
fmt.Scanln(&gender)
fmt.Println("年龄:")
age := 0
fmt.Scanln(&age)
fmt.Println("电话:")
phone := ""
fmt.Scanln(&phone)
fmt.Println("邮箱:")
email := ""
fmt.Scanln(&email)
//构建一个新的Customer实例
//注意:id号,没有让用户输入,id是唯一的,需要系统分配
customer := model.NewCustomer2(name, gender, age, phone, email)
if th.customerService.Add(customer) {
fmt.Println("-----------------添加成功---------------")
} else {
fmt.Println("-----------------添加失败---------------")
}
}
// 通过id删除客户信息
func (th *customerView) delete() {
fmt.Println("------------------删除客户信息------------------")
fmt.Println("请输入要删除客户的id(-1 退出):")
id := -1
fmt.Scanln(&id)
if id == -1 {
return
}
flag := th.customerService.Delete(id)
if !flag {
fmt.Println("该客户不存在,删除失败")
return
}
fmt.Println("客户Id=", id, "的客户已删除")
}
// 通过id修改客户信息
func (th *customerView) update() {
fmt.Println("------------------修改客户信息------------------")
fmt.Println("请输入要修改客户的id(-1 退出):")
id := -1
fmt.Scanln(&id)
if id == -1 {
return
}
flag := th.customerService.Update(id)
if !flag {
fmt.Println("该客户不存在,修改失败")
return
}
fmt.Println("客户Id=", id, "的客户信息已修改")
}
// 退出
func (th *customerView) exit() {
fmt.Println("--------------是否退出(Y/N)")
choice := ""
for {
fmt.Scanln(&choice)
if choice == "Y" || choice == "y" || choice == "N" || choice == "n" {
break
}
fmt.Println("输入有误,请重新输入是否退出(Y/N)")
}
if choice == "Y" || choice == "y" {
th.loop = false
}
}
// 显示主菜单
func (cv *customerView) mainMenu() {
for {
fmt.Println("\n---------------------客户信息管理软件---------------------")
fmt.Println("---------------------1、添加客户")
fmt.Println("---------------------2、修改客户")
fmt.Println("---------------------3、删除客户")
fmt.Println("---------------------4、客户列表")
fmt.Println("---------------------5、退 出")
fmt.Println("请选择(1-5):")
fmt.Scanln(&cv.key)
switch cv.key {
case "1":
cv.add()
case "2":
cv.update()
case "3":
cv.delete()
case "4":
cv.list()
case "5":
cv.exit()
default:
fmt.Println("输入错误,请重新输入:")
}
if !(cv.loop) {
fmt.Println("你已退出该管理系统")
break
}
}
}
func main() {
//在main函数中,创建一个customerView,并运行显示主菜单
customerView := customerView{
key: "",
loop: true,
}
customerView.customerService = service.NewCustomerService()
//显示主菜单
customerView.mainMenu()
}
customer.go
package model
import (
"fmt"
)
// 声明一个Customer结构体,表示一个客户信息
type Customer struct {
Id int
Name string
Gender string
Age int
Phone string
Email string
}
// 编写一个工厂模式,返回一个Customer的实例
func NewCustomer(id int, name string, gender string, age int, phone string, email string) Customer {
return Customer{
Id: id,
Name: name,
Gender: gender,
Age: age,
Phone: phone,
Email: email,
}
}
func NewCustomer2(name string, gender string, age int, phone string, email string) Customer {
return Customer{
Name: name,
Gender: gender,
Age: age,
Phone: phone,
Email: email,
}
}
// 返回用户的信息
func (th Customer) GetInfo() string {
info := fmt.Sprintf("%v\t%v\t%v\t%v\t%v\t%v\t", th.Id, th.Name, th.Gender, th.Age, th.Phone, th.Email)
return info
}
customerService.go
package service
import (
"fmt"
"go_code/customerManage/model"
)
// 该CustomerService,完成对Customer的操作,包括
// 增删改查
type CustomerService struct {
customers []model.Customer
//声明一个字段,表示当前切片含有多少个客户
//该字段后面还可以作为新客户的id+1
customerNum int
}
// 编写一个方法,可以返回*CustomerService
func NewCustomerService() *CustomerService {
//为了能够看到有客户在切片中,我们初始化一个客户
customerService := &CustomerService{}
customerService.customerNum = 1
customer := model.NewCustomer(1, "张三", "男", 23, "123", "zs@qq.com")
customerService.customers = append(customerService.customers, customer)
return customerService
}
// 返回客户切片
func (th *CustomerService) List() []model.Customer {
return th.customers
}
// 添加客户到customers切片
func (th *CustomerService) Add(customer model.Customer) bool {
//我们确定一个分配id的规则,就是添加的顺序
th.customerNum++
customer.Id = th.customerNum
th.customers = append(th.customers, customer)
return true
}
// 根据id删除客户信息
func (th *CustomerService) Delete(id int) bool {
index := th.FindById(id)
if index == -1 {
return false
}
th.customers = append(th.customers[:index], th.customers[index+1:]...)
return true
}
// 根据id查找客户在切片中对应的下标,如果没有该客户,返回-1
func (th *CustomerService) FindById(id int) int {
index := -1
//遍历th.customers切片
for i := 0; i < len(th.customers); i++ {
if th.customers[i].Id == id {
index = i
}
}
return index
}
// 根据id修改客户信息
func (th *CustomerService) Update(id int) bool {
index := th.FindById(id)
if index == -1 {
return false
}
fmt.Print("姓名(", th.customers[index].Name, ")")
name := ""
fmt.Scanln(&name)
if name != "" {
th.customers[index].Name = name
}
fmt.Print("性别(", th.customers[index].Gender, ")")
gender := ""
fmt.Scanln(&gender)
if gender != "" {
th.customers[index].Gender = gender
}
fmt.Print("年龄(", th.customers[index].Age, ")")
age := -1
fmt.Scanln(&age)
if age != -1 {
th.customers[index].Age = age
}
fmt.Print("电话(", th.customers[index].Phone, ")")
phone := ""
fmt.Scanln(&phone)
if phone != "" {
th.customers[index].Phone = phone
}
fmt.Print("邮箱(", th.customers[index].Email, ")")
email := ""
fmt.Scanln(&email)
if email != "" {
th.customers[index].Email = email
}
fmt.Println("--------------修改完成---------")
return true
}