package domain

//关联业务员
type Salesman struct {
	//Id int64 `json:"id"`
	Name      string `json:"name"`
	Telephone string `json:"telephone"`
}