我有一个每天解析在线文档的服务。我想把它保存在蒙古族的数据库里。提取的数据是这样组织的(我每天都有一个处理列表):
public class Process
{
public IList<Lawyer> Lawyers { get; set; }
public string Details { get; set; }
public DateTime Date { get; set; }
public Info AdditionalInfo { get; set; }
}
所以我需要每天存储一个过程的列表。我的客户应用程序将读取该数据库,搜索当天给定
我有一个由flutter and Firestore dB开发的移动应用程序。
我在某处读到这个应用程序必须遵守GDPR。
My Firestore内容信息用户(电子邮件、PhoneNumber、图像)和商店信息(手机、图像、位置...)
我需要加密哪些数据来尊重这个GDPR,以及我还需要做些什么,
提前感谢
我编这个例子是为了证明我的问题。假设我们有以下模型:
class Case < ApplicationRecord
has_many :clients
accepts_nested_attributes_for :clients
end
class Client < ApplicationRecord
belongs_to :case
has_many :attorneys
accepts_nested_attributes_for :attorneys
end
class Attorney < ApplicationRecord