zilean/开发文档/20190807_分层定义.md

13 lines
712 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# entity
数据库映射类,与数据库字段一一对应
# dao
数据库操作映射层控制表数据CRUD或简单查询
# service
简单的函数比如新增、删除、修改、查询不对数据进行处理封装dao也不调用dao进行复杂业务
# biz
灵活运用service实现各种复杂的业务不仅仅包含CRUD, 简单的CRUD可以直接引用dao
特殊的必须使用sql才能处理的就引用service进行处理
# bo(这里写vo也行, 个人理解, 不喜勿碰)
包含在返回给客户端(即浏览器)Result中的各种bo用于向前端输出所需要的数据
# query
查询对象,即一个以上(不包含)的查询值时必须将参数封装成query对象