📝 添加注释说明

This commit is contained in:
toly
2020-04-21 21:15:09 +08:00
parent 97308f260d
commit b41b1285b5
4 changed files with 14 additions and 5 deletions

View File

@@ -2,7 +2,7 @@ import 'package:equatable/equatable.dart';
/// create by 张风捷特烈 on 2020-03-04
/// contact me by email 1981462002@qq.com
/// 说明:
/// 说明: 详情页节点-展示-数据模型
class NodeModel extends Equatable {

View File

@@ -5,6 +5,11 @@ import 'package:flutter_unit/app/enums.dart';
import 'package:flutter_unit/app/res/cons.dart';
import 'package:flutter_unit/storage/po/widget_po.dart';
/// create by 张风捷特烈 on 2020-03-04
/// contact me by email 1981462002@qq.com
/// 说明: 组件信息-展示-数据模型
///
enum WidgetType {
singe_show, //单一展示型 0
structure, //结构型 1

View File

@@ -1,6 +1,8 @@
//persistent object 持久层对象,
// 用于与数据库中记录对用的对象
/// create by 张风捷特烈 on 2020-03-04
/// contact me by email 1981462002@qq.com
/// 说明: 详情页节点-数据库-数据模型
///
class NodePo {
final int id;
final int widgetId;

View File

@@ -1,6 +1,8 @@
//persistent object 持久层对象,
// 用于与数据库中记录对用的对象
/// create by 张风捷特烈 on 2020-03-04
/// contact me by email 1981462002@qq.com
/// 说明: 组件信息-数据库-数据模型
///
import 'package:equatable/equatable.dart';
class WidgetPo extends Equatable {