You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yangsai@163.com
cf3d792c05
|
6 months ago | |
---|---|---|
.. | ||
activity | 6 months ago | |
agent | 6 months ago | |
article | 6 months ago | |
diy | 6 months ago | |
order | 6 months ago | |
other | 6 months ago | |
out | 6 months ago | |
product | 6 months ago | |
service | 6 months ago | |
shipping | 6 months ago | |
sms | 6 months ago | |
system | 6 months ago | |
user | 6 months ago | |
6 months ago | ||
.DS_Store | 6 months ago | |
README.md | 6 months ago | |
filetree.txt | 6 months ago |
README.md
crmeb/app/model目录用于定义项目的数据模型类。
数据模型类的主要作用和特征有:
-
每个模型类对应数据库中的一张表。
-
类属性定义表结构,与表结构一一对应。
-
包含读写数据相关方法,通过ActiveRecord实现。
-
提供数据与数据库层解耦,统一的数据访问接口。
-
数据验证机制,保证数据完整性和一致性。
具体包含:
-
定义模型属性,字段名称对应表结构。
-
自动返回属性值和赋值属性值。
-
实现基础的CRUD方法操作数据库。
-
可扩展自定义数据逻辑和验证规则。
使用模型类可以:
-
减少直接操作数据库带来的复杂性。
-
跨项目重用数据层逻辑。
-
提高项目的可扩展性与复用性。
所以该目录定义的数据模型层,统一封装了项目运用的数据表模型和操作方式。