DictEntity constructor

DictEntity({
  1. String? id,
  2. dynamic createBy,
  3. String? createTime,
  4. dynamic updateTime,
  5. dynamic updateBy,
  6. dynamic deletedFlag,
  7. String? tenantId,
  8. String? orgCode,
  9. String? groupCode,
  10. String? groupName,
  11. String? dicCode,
  12. String? dicName,
  13. dynamic enableStatus,
  14. num? sort,
  15. String? dicValue,
  16. String? remark,
  17. String? parentCode,
  18. num? systemDic,
  19. dynamic expandFields,
  20. dynamic expandFieldValue,
  21. dynamic dataGroupDics,
  22. List<DictEntity>? children,
  23. dynamic deleteIds,
})

Implementation

DictEntity({
  this.id,
  this.createBy,
  this.createTime,
  this.updateTime,
  this.updateBy,
  this.deletedFlag,
  this.tenantId,
  this.orgCode,
  this.groupCode,
  this.groupName,
  this.dicCode,
  this.dicName,
  this.enableStatus,
  this.sort,
  this.dicValue,
  this.remark,
  this.parentCode,
  this.systemDic,
  this.expandFields,
  this.expandFieldValue,
  this.dataGroupDics,
  this.children,
  this.deleteIds,
});