gpt4 book ai didi

acumatica - 如何加密自定义表/DAC 中的字段

转载 作者:行者123 更新时间:2023-12-02 17:13:45 24 4
gpt4 key购买 nike

我有一个自定义表格,我想确保特定字段的数据已加密。这意味着如果对该表运行查询,该字段的数据将显示为加密字符串,并且只有 UI 会显示其真实值。

我注意到其他人在 10 月 18 日提交了以下案例,但没有人回答: Encrypt Fields in a Custom Table

是否有任何记录(或未记录)的流程来执行此操作?

最佳答案

您应该按如下方式更改 DAC:

    #region Description
public abstract class description : PX.Data.IBqlField
{
}
protected string _Description;
//[PXDBString(50, IsUnicode = true)] //Replace this line with then next
[PXRSACryptString(50, IsUnicode = true, IsViewDecrypted = true)]
[PXDefault("")]
[PXUIField(DisplayName = "Description")]
public virtual string Description
{
get
{
return this._Description;
}
set
{
this._Description = value;
}
}
#endregion

关于acumatica - 如何加密自定义表/DAC 中的字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47638103/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com