毕设(一)

毕设(一)

校园商铺
终于要开始做毕设了,太难了
前提是搭建maven,平台用的是eclipse。
此处可百度看教程。
接下来开始重头戏!!
o2o就当是这个项目的名字吧。

  • 在此之前搞清楚各实体类的联系

微信账号和本地账号通过用户信息的i联系在一起
在这里插入图片描述
商铺信息和区域信息通过区域id连接
店铺信息的店铺id和店铺类别做关联

在这里插入图片描述
商品信息通过product.id与商品类别相关联
详情图片通过product.id与商品信息相关联

在这里插入图片描述
1.实体类设计
在这里插入图片描述
区域设计
在这里插入图片描述
区域类代码
在one这个项目下的Java Resources下的src/main/java创建实体包,名为com.one.entity,在这个包下面创建Area.java
在这里插入图片描述
详细代码如下:

package com.one.entity;

import java.util.Date;

public class Area {
   //ID
	private Integer areaId;
   //名称
    private String areaName;
    //权重(做排序)
    private Integer priority;
    //创建时间
    private Date createTime;
    //更新时间
    private Date lastEditTime;
	public Integer getAreaId() {
		return areaId;
	}
	public void setAreaId(Integer areaId) {
		this.areaId = areaId;
	}
	public String getAreaName() {
		return areaName;
	}
	public void setAreaName(String areaName) {
		this.areaName = areaName;
	}
	public Integer getPriority() {
		return priority;
	}
	public void setPriority(Integer priority) {
		this.priority = priority;
	}
	public Date getCreateTime() {
		return createTime;
	}
	public void setCreateTime(Date createTime) {
		this.createTime = createTime;
	}
	public Date getLastEditTime() {
		return lastEditTime;
	}
	public void setLastEditTime(Date lastEditTime) {
		this.lastEditTime = lastEditTime;
	}
    
}

区域类sql语句(在此之前先创建一个名为"one”的数据库)

CREATE TABLE `tb_area` (
`area_id`  int(2) NOT NULL AUTO_INCREMENT ,
`area_name`  varchar(200) NOT NULL ,
`priority`  int(2) NOT NULL DEFAULT '0' ,
`create_time`  datetime  DEFAULT NULL ,
`last_edit_time`  datetime DEFAULT NULL ,
PRIMARY KEY (`area_id`),
unique key `UK_AREA`(`area_name`)
)ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

在这里插入图片描述
用户设计
在这里插入图片描述
在one这个项目下的Java Resources下的src/main/java创建实体包,名为com.one.entity,在这个包下面创建PersonInfo.java

在这里插入图片描述
详细代码如下:

package com.one.entity;

import java.util.Date;

public class PersonInfo {
 private Long userId;
 private String name;
 private String profileImg;
 private String email;
 private String gender;
 //用户状态
 private Integer enableStatus;
 //1.顾客 2.店家 3.超级管理员
 private Integer userType;
 private Date createTime;
 private Date lastEditTime;
public Long getUserId() {
	return userId;
}
public void setUserId(Long userId) {
	this.userId = userId;
}
public String getName() {
	return name;
}
public void setName(String name) {
	this.name = name;
}
public String getProfileImg() {
	return profileImg;
}
public void setProfileImg(String profileImg) {
	this.profileImg = profileImg;
}
public String getEmail() {
	return email;
}
public void setEmail(String email) {
	this.email = email;
}
public String getGender() {
	return gender;
}
public void setGender(String gender) {
	this.gender = gender;
}
public Integer getEnableStatus() {
	return enableStatus;
}
public void setEnableStatus(Integer enableStatus) {
	this.enableStatus = enableStatus;
}
public Integer getUserType() {
	return userType;
}
public void setUserType(Integer userType) {
	this.userType = userType;
}
public Date getCreateTime() {
	return createTime;
}
public void setCreateTime(Date createTime) {
	this.createTime = createTime;
}
public Date getLastEditTime() {
	return lastEditTime;
}
public void setLastEditTime(Date lastEditTime) {
	this.lastEditTime = lastEditTime;
}
 
}

用户类sql语句

CREATE TABLE `tb_person_info` (
`user_id`  int(10) NOT NULL AUTO_INCREMENT ,
`name`  varchar(32) DEFAULT NULL ,
`profile_img` varchar(1024) DEFAULT NULL ,
`email`  varchar(1024) DEFAULT NULL ,
`gender`  varchar(2) DEFAULT NULL ,
`enable_status`  int(2)NOT NULL DEFAULT '0' COMMENT '0:禁止使用本商城,1:允许使用本商城',
`user_type`  int(2) NOT NULL DEFAULT '1' COMMENT '1:顾客,2:店家,3:超级管理员',
`create_time` datetime DEFAULT NULL,
`last_edit_time`  datetime DEFAULT NULL,
primary key(`user_id`)
)ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8

在这里插入图片描述
账号设计
在这里插入图片描述
与上边同样的道理,建立WechatAuth.java类
在这里插入图片描述
详细代码如下

package com.one.entity;

import java.util.Date;

public class WechatAuth {
 private Long wechatAuthId;
 private String openId;
 private Date createTime;
 //与个人信息表相连接
 private PersonInfo personInfo;
public Long getWechatAuthId() {
	return wechatAuthId;
}
public void setWechatAuthId(Long wechatAuthId) {
	this.wechatAuthId = wechatAuthId;
}
public String getOpenId() {
	return openId;
}
public void setOpenId(String openId) {
	this.openId = openId;
}
public Date getCreateTime() {
	return createTime;
}
public void setCreateTime(Date createTime) {
	this.createTime = createTime;
}
public PersonInfo getPersonInfo() {
	return personInfo;
}
public void setPersonInfo(PersonInfo personInfo) {
	this.personInfo = personInfo;
}
 
}

对应的sql语句为

CREATE TABLE `tb_wechat_auth` (
`wechat_auth_id`  int(10) NOT NULL AUTO_INCREMENT ,
`user_id`  int(10) NOT NULL ,
`open_id`  varchar(1024) NOT NULL ,
`create_time` datetime DEFAULT NULL,
primary key(`wechat_auth_id`),
constraint `fk_wechatauth_profile` foreign key(`user_id`) references `tb_person_info`(`user_id`)
)ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

在这里插入图片描述
建立LocalAuth.java类
在这里插入图片描述
详细代码如下

package com.one.entity;

import java.util.Date;

public class LocalAuth {
  private Long localAuthId;
  private String username;
  private String password;
  private Date createTime;
  private Date lastEditTime;
  private PersonInfo personInfo;
public Long getLocalAuthId() {
	return localAuthId;
}
public void setLocalAuthId(Long localAuthId) {
	this.localAuthId = localAuthId;
}
public String getUsername() {
	return username;
}
public void setUsername(String username) {
	this.username = username;
}
public String getPassword() {
	return password;
}
public void setPassword(String password) {
	this.password = password;
}
public Date getCreateTime() {
	return createTime;
}
public void setCreateTime(Date createTime) {
	this.createTime = createTime;
}
public Date getLastEditTime() {
	return lastEditTime;
}
public void setLastEditTime(Date lastEditTime) {
	this.lastEditTime = lastEditTime;
}
public PersonInfo getPersonInfo() {
	return personInfo;
}
public void setPersonInfo(PersonInfo personInfo) {
	this.personInfo = personInfo;
}
  
}

所对应的sql语句如下:

CREATE TABLE `tb_local_auth` (
`local_auth_id`  int(10) NOT NULL AUTO_INCREMENT ,
`user_id`  int(10) NOT NULL ,
`username`  varchar(128) NOT NULL ,
`password`  varchar(128) NOT NULL ,
`create_time` datetime DEFAULT NULL,
`last_edit_time` datetime DEFAULT NULL,
primary key(`local_auth_id`),
UNIQUE KEY `uk_local_profile`(`username`), 
constraint `fk_localauth_profile` foreign key(`user_id`) references `tb_person_info`(`user_id`)
)ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;


增加唯一索引sql语句:目的在于提升查询效能

alter table tb_wechat_auth add unique index(open_id);

在这里插入图片描述
头条类创建
在这里插入图片描述
同理创建HeadLine.java
在这里插入图片描述
详细代码如下:

package com.one.entity;

import java.util.Date;

public class HeadLine {
  private Long lineId;
  private String lineName;
  private String lineLink;
  private String lineImg;
  private Integer priority;
  //0.不可用1.可用
  private Integer enableStatus;
  private Date createTime;
  private Date lastEditTime;
public Long getLineId() {
	return lineId;
}
public void setLineId(Long lineId) {
	this.lineId = lineId;
}
public String getLineName() {
	return lineName;
}
public void setLineName(String lineName) {
	this.lineName = lineName;
}
public String getLineLink() {
	return lineLink;
}
public void setLineLink(String lineLink) {
	this.lineLink = lineLink;
}
public String getLineImg() {
	return lineImg;
}
public void setLineImg(String lineImg) {
	this.lineImg = lineImg;
}
public Integer getPriority() {
	return priority;
}
public void setPriority(Integer priority) {
	this.priority = priority;
}
public Integer getEnableStatus() {
	return enableStatus;
}
public void setEnableStatus(Integer enableStatus) {
	this.enableStatus = enableStatus;
}
public Date getCreateTime() {
	return createTime;
}
public void setCreateTime(Date createTime) {
	this.createTime = createTime;
}
public Date getLastEditTime() {
	return lastEditTime;
}
public void setLastEditTime(Date lastEditTime) {
	this.lastEditTime = lastEditTime;
}
  
}

对应sql语句

CREATE TABLE `tb_head_line` (
`line_id`  int(100) NOT NULL AUTO_INCREMENT ,
`line_name`  varchar(100) DEFAULT NULL ,
`line_link`  varchar(2000) NOT NULL ,
`line_img` varchar(2000) NOT NULL,
`priority` int(2) DEFAULT NULL,
`enable_status`int(2) NOT NULL DEFAULT '0',
`create_time` datetime DEFAULT NULL,
`last_edit_time` datetime DEFAULT NULL,
primary key(`line_id`)
)ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8

在这里插入图片描述
店铺类别
在这里插入图片描述
同理,建立ShopCategory.java
在这里插入图片描述
详细代码如下:

package com.one.entity;

import java.util.Date;

public class ShopCategory {
  private Long shopCategoryId;
  private String shopcategoryName;
  private String shopcategoryDesc;
  private String shopCategoryImg;
  private Integer priority;
  private Date createTime;
  private Date lastEditTime;
  private ShopCategory parent;
public Long getShopCategoryId() {
	return shopCategoryId;
}
public void setShopCategoryId(Long shopCategoryId) {
	this.shopCategoryId = shopCategoryId;
}
public String getShopcategoryName() {
	return shopcategoryName;
}
public void setShopcategoryName(String shopcategoryName) {
	this.shopcategoryName = shopcategoryName;
}
public String getShopcategoryDesc() {
	return shopcategoryDesc;
}
public void setShopcategoryDesc(String shopcategoryDesc) {
	this.shopcategoryDesc = shopcategoryDesc;
}
public String getShopCategoryImg() {
	return shopCategoryImg;
}
public void setShopCategoryImg(String shopCategoryImg) {
	this.shopCategoryImg = shopCategoryImg;
}
public Integer getPriority() {
	return priority;
}
public void setPriority(Integer priority) {
	this.priority = priority;
}
public Date getCreateTime() {
	return createTime;
}
public void setCreateTime(Date createTime) {
	this.createTime = createTime;
}
public Date getLastEditTime() {
	return lastEditTime;
}
public void setLastEditTime(Date lastEditTime) {
	this.lastEditTime = lastEditTime;
}
public ShopCategory getParent() {
	return parent;
}
public void setParent(ShopCategory parent) {
	this.parent = parent;
}
  
}

对应sql语句

CREATE TABLE `tb_shop_category` (
`shop_category_id`  int(11) NOT NULL AUTO_INCREMENT ,
`shop_category_name`  varchar(100)NOT NULL DEFAULT '' ,
`shop_category_desc`  varchar(1000) DEFAULT '',
`shop_category_img` varchar(2000) DEFAULT NULL,
`priority` int(2) NOT NULL DEFAULT '0',
`create_time` datetime DEFAULT NULL,
`last_edit_time` datetime DEFAULT NULL,
`parent_id`int(11)  DEFAULT NULL,
primary key(`shop_category_id`),
constraint `fk_shop_category_self` foreign key(`parent_id`) references `tb_shop_category`(`shop_category_id`)
)ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;


在这里插入图片描述
店铺
在这里插入图片描述
创建Shop.java
在这里插入图片描述
详细代码如下:

package com.one.entity;

import java.util.Date;

public class Shop {
   private Long shopId;
   private String shopName;
   private String shopDesc;
   private String shopAddr;
   private String phone;
   private String shopImg;
   private Integer priority;
   private Date createTime;
   private Date lastEditTime;
   //-1.不可用 0.审核中 1.可用
   private Integer enableStatus;
   //超级管理员给店家的提醒
   private String advice;
   private Area area;
   private PersonInfo owner;
   private ShopCategory shopCategory;
public Long getShopId() {
	return shopId;
}
public void setShopId(Long shopId) {
	this.shopId = shopId;
}
public String getShopName() {
	return shopName;
}
public void setShopName(String shopName) {
	this.shopName = shopName;
}
public String getShopDesc() {
	return shopDesc;
}
public void setShopDesc(String shopDesc) {
	this.shopDesc = shopDesc;
}
public String getShopAddr() {
	return shopAddr;
}
public void setShopAddr(String shopAddr) {
	this.shopAddr = shopAddr;
}
public String getPhone() {
	return phone;
}
public void setPhone(String phone) {
	this.phone = phone;
}
public String getShopImg() {
	return shopImg;
}
public void setShopImg(String shopImg) {
	this.shopImg = shopImg;
}
public Integer getPriority() {
	return priority;
}
public void setPriority(Integer priority) {
	this.priority = priority;
}
public Date getCreateTime() {
	return createTime;
}
public void setCreateTime(Date createTime) {
	this.createTime = createTime;
}
public Date getLastEditTime() {
	return lastEditTime;
}
public void setLastEditTime(Date lastEditTime) {
	this.lastEditTime = lastEditTime;
}
public Integer getEnableStatus() {
	return enableStatus;
}
public void setEnableStatus(Integer enableStatus) {
	this.enableStatus = enableStatus;
}
public String getAdvice() {
	return advice;
}
public void setAdvice(String advice) {
	this.advice = advice;
}
public Area getArea() {
	return area;
}
public void setArea(Area area) {
	this.area = area;
}
public PersonInfo getOwner() {
	return owner;
}
public void setOwner(PersonInfo owner) {
	this.owner = owner;
}
public ShopCategory getShopCategory() {
	return shopCategory;
}
public void setShopCategory(ShopCategory shopCategory) {
	this.shopCategory = shopCategory;
}
   
}

对应SQL语句

CREATE TABLE `tb_shop` (
`shop_id`  int(10) NOT NULL AUTO_INCREMENT ,
`owner_id` int(10) NOT NULL COMMENT '店铺创建人',
`area_id` int(5) DEFAULT NULL  ,
`shop_category_id`int(11) DEFAULT NULL ,
`shop_name`  varchar(256)NOT NULL ,
`shop_desc`  varchar(1024) DEFAULT NULL,
`shop_addr`  varchar(200) DEFAULT NULL,
`phone`  varchar(128) DEFAULT NULL,
`shop_img` varchar(1024) DEFAULT NULL,
`priority` int(3)  DEFAULT '0',
`create_time` datetime DEFAULT NULL,
`last_edit_time` datetime DEFAULT NULL,
`enable_status`int(2) NOT NULL DEFAULT '0',
`advice`  varchar(255) DEFAULT NULL,
primary key(`shop_id`),
constraint `fk_shop_area` foreign key(`area_id`) references `tb_area`(`area_id`),
constraint `fk_shop_profile` foreign key(`owner_id`) references `tb_person_info`(`user_id`),
constraint `fk_shop_shopcate` foreign key(`shop_category_id`) references `tb_shop_category`(`shop_category_id`)
)ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

在这里插入图片描述
商品类别
创建ProductCategory.java

package com.one.entity;

import java.util.Date;

public class ProductCategory {
	// 主键ID
	private Long productCategoryId;
	// 该类别是属于哪个店铺的
	private Long shopId;
	// 类别名
	private String productCategoryName;
	// 权重,越大越排前显示
	private Integer priority;
	// 创建时间
	private Date createTime;

	public Long getProductCategoryId() {
		return productCategoryId;
	}

	public void setProductCategoryId(Long productCategoryId) {
		this.productCategoryId = productCategoryId;
	}

	public Long getShopId() {
		return shopId;
	}

	public void setShopId(Long shopId) {
		this.shopId = shopId;
	}

	public String getProductCategoryName() {
		return productCategoryName;
	}

	public void setProductCategoryName(String productCategoryName) {
		this.productCategoryName = productCategoryName;
	}

	public Integer getPriority() {
		return priority;
	}

	public void setPriority(Integer priority) {
		this.priority = priority;
	}

	public Date getCreateTime() {
		return createTime;
	}

	public void setCreateTime(Date createTime) {
		this.createTime = createTime;
	}

}

对应sql语句

CREATE TABLE `tb_product_category` (
  `product_category_id` int(11) NOT NULL AUTO_INCREMENT,
  `product_category_name` varchar(100) NOT NULL,
  `priority` int(2) DEFAULT '0',
  `create_time` datetime DEFAULT NULL,
  `shop_id` int(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`product_category_id`),
  KEY `fk_procate_shop` (`shop_id`),
  CONSTRAINT `fk_procate_shop` FOREIGN KEY (`shop_id`) REFERENCES `tb_shop` (`shop_id`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8;

在这里插入图片描述
商品
在这里插入图片描述
创建Product.java

package com.one.entity;

import java.util.Date;
import java.util.List;

public class Product {
	// 主键ID
	private Long productId;
	// 商品名
	private String productName;
	// 商品简介
	private String productDesc;
	// 简略图
	private String imgAddr;
	// 原价
	private String normalPrice;
	// 现价(推广价格)
	private String promotionPrice;
	// 权重,越大越排前显示
	private Integer priority;
	// 商品积分
	private Integer point;
	// 创建时间
	private Date createTime;
	// 最近一次的更新时间
	private Date lastEditTime;
	// 0.下架 1.在前端展示系统展示
	private Integer enableStatus;

	// 图片详情图列表,跟商品是多对一的关系
	private List<ProductImg> productImgList;
	// 商品类别,一件商品仅属于一个商品类别
	private ProductCategory productCategory;
	// 店铺实体类,标明商品属于哪个店铺
	private Shop shop;

	public Long getProductId() {
		return productId;
	}

	public void setProductId(Long productId) {
		this.productId = productId;
	}

	public String getProductName() {
		return productName;
	}

	public void setProductName(String productName) {
		this.productName = productName;
	}

	public String getProductDesc() {
		return productDesc;
	}

	public void setProductDesc(String productDesc) {
		this.productDesc = productDesc;
	}

	public String getImgAddr() {
		return imgAddr;
	}

	public void setImgAddr(String imgAddr) {
		this.imgAddr = imgAddr;
	}

	public String getNormalPrice() {
		return normalPrice;
	}

	public void setNormalPrice(String normalPrice) {
		this.normalPrice = normalPrice;
	}

	public String getPromotionPrice() {
		return promotionPrice;
	}

	public void setPromotionPrice(String promotionPrice) {
		this.promotionPrice = promotionPrice;
	}

	public Integer getPriority() {
		return priority;
	}

	public void setPriority(Integer priority) {
		this.priority = priority;
	}

	public Date getCreateTime() {
		return createTime;
	}

	public void setCreateTime(Date createTime) {
		this.createTime = createTime;
	}

	public Date getLastEditTime() {
		return lastEditTime;
	}

	public void setLastEditTime(Date lastEditTime) {
		this.lastEditTime = lastEditTime;
	}

	public Integer getEnableStatus() {
		return enableStatus;
	}

	public void setEnableStatus(Integer enableStatus) {
		this.enableStatus = enableStatus;
	}

	public Integer getPoint() {
		return point;
	}

	public void setPoint(Integer point) {
		this.point = point;
	}

	public List<ProductImg> getProductImgList() {
		return productImgList;
	}

	public void setProductImgList(List<ProductImg> productImgList) {
		this.productImgList = productImgList;
	}

	public ProductCategory getProductCategory() {
		return productCategory;
	}

	public void setProductCategory(ProductCategory productCategory) {
		this.productCategory = productCategory;
	}

	public Shop getShop() {
		return shop;
	}

	public void setShop(Shop shop) {
		this.shop = shop;
	}
}

对应的sql语句

CREATE TABLE `tb_product` (
  `product_id` int(100) NOT NULL AUTO_INCREMENT,
  `product_name` varchar(100) NOT NULL,
  `product_desc` varchar(2000) DEFAULT NULL,
  `img_addr` varchar(2000) DEFAULT '',
  `normal_price` varchar(100) DEFAULT NULL,
  `promotion_price` varchar(100) DEFAULT NULL,
  `priority` int(2) NOT NULL DEFAULT '0',
  `create_time` datetime DEFAULT NULL,
  `last_edit_time` datetime DEFAULT NULL,
  `enable_status` int(2) NOT NULL DEFAULT '0',
  `product_category_id` int(11) DEFAULT NULL,
  `shop_id` int(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`product_id`),
  CONSTRAINT `fk_product_procate` FOREIGN KEY (`product_category_id`) REFERENCES `tb_product_category` (`product_category_id`),
  CONSTRAINT `fk_product_shop` FOREIGN KEY (`shop_id`) REFERENCES `tb_shop` (`shop_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

在这里插入图片描述

详情图片
创建ProductImg.java

package com.one.entity;

import java.util.Date;
public class ProductImg {
	// 主键ID
	private Long productImgId;
	// 图片地址
	private String imgAddr;
	// 图片简介
	private String imgDesc;
	// 权重,越大越排前显示
	private Integer priority;
	// 创建时间
	private Date createTime;
	// 标明是属于哪个商品的图片
	private Long productId;

	public Long getProductImgId() {
		return productImgId;
	}

	public void setProductImgId(Long productImgId) {
		this.productImgId = productImgId;
	}

	public String getImgAddr() {
		return imgAddr;
	}

	public void setImgAddr(String imgAddr) {
		this.imgAddr = imgAddr;
	}

	public String getImgDesc() {
		return imgDesc;
	}

	public void setImgDesc(String imgDesc) {
		this.imgDesc = imgDesc;
	}

	public Integer getPriority() {
		return priority;
	}

	public void setPriority(Integer priority) {
		this.priority = priority;
	}

	public Date getCreateTime() {
		return createTime;
	}

	public void setCreateTime(Date createTime) {
		this.createTime = createTime;
	}

	public Long getProductId() {
		return productId;
	}

	public void setProductId(Long productId) {
		this.productId = productId;
	}

}

对应的SQL语句

CREATE TABLE `tb_product_img` (
  `product_img_id` int(20) NOT NULL AUTO_INCREMENT,
  `img_addr` varchar(2000) NOT NULL,
  `img_desc` varchar(2000) DEFAULT NULL,
  `priority` int(2) DEFAULT '0',
  `create_time` datetime DEFAULT NULL,
  `product_id` int(20) DEFAULT NULL,
  PRIMARY KEY (`product_img_id`),
  CONSTRAINT `fk_proimg_product` FOREIGN KEY (`product_id`) REFERENCES `tb_product` (`product_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

在这里插入图片描述

当然可以!以下是个关于家乡介绍网站设计的毕设级、二级、三级、四级目录: 级目录:家乡介绍网站设计 二级目录: 1. 家乡概况 - 家乡的地理位置、面积、气候等基本情况 - 家乡的历史沿革、人口分布等概述 2. 文化遗产 - 家乡的历史文化遗产介绍 - 家乡的传统文化、民俗文化、宗教文化等介绍 3. 自然景观 - 家乡的自然风光、名胜古迹介绍 - 家乡的自然保护区、森林公园等自然景观介绍 4. 经济发展 - 家乡的主要产业、经济发展历程介绍 - 家乡的现代农业、工业、服务业等情况介绍 5. 旅游资源 - 家乡的旅游资源、旅游线路介绍 - 家乡的民宿、美食、特色商品等旅游资源介绍 三级目录: 1.1 地理位置 1.2 历史沿革 1.3 人口分布 2.1 历史文化遗产 2.2 传统文化 2.3 民俗文化 2.4 宗教文化 3.1 自然风光 3.2 名胜古迹 3.3 自然保护区 3.4 森林公园 4.1 主要产业 4.2 经济发展历程 4.3 现代农业 4.4 工业 4.5 服务业 5.1 旅游资源 5.2 旅游线路 5.3 民宿 5.4 美食 5.5 特色商品 四级目录: 2.1.1 历史文化遗产介绍 2.1.2 历史文化遗产保护情况 2.2.1 传统文化介绍 2.2.2 传统文化发展现状 2.3.1 民俗文化介绍 2.3.2 民俗文化保护情况 2.4.1 宗教文化介绍 2.4.2 宗教文化现状 3.1.1 自然风光介绍 3.1.2 自然风光保护情况 3.2.1 名胜古迹介绍 3.2.2 名胜古迹保护情况 3.3.1 自然保护区介绍 3.3.2 自然保护区保护情况 3.4.1 森林公园介绍 3.4.2 森林公园保护情况 4.1.1 主要产业介绍 4.1.2 主要产业发展现状 4.2.1 经济发展历程介绍 4.2.2 经济发展趋势分析 4.3.1 现代农业介绍 4.3.2 现代农业发展现状 4.4.1 工业介绍 4.4.2 工业发展现状 4.5.1 服务业介绍 4.5.2 服务业发展现状 5.1.1 旅游资源介绍 5.1.2 旅游资源开发现状 5.2.1 旅游线路介绍 5.2.2 旅游线路推荐 5.3.1 民宿介绍 5.3.2 民宿预订 5.4.1 美食介绍 5.4.2 美食推荐 5.5.1 特色商品介绍 5.5.2 特色商品购买
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值