verification.dto.FieldRuleTDO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of velen-etl-verification-api Show documentation
Show all versions of velen-etl-verification-api Show documentation
Open Source maven plugin for code encryption.
The newest version!
package verification.dto;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import verification.entity.VerifyEnum;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class FieldRuleTDO
{
private VerifyEnum.FieldKeyRuleType keyRuleType = VerifyEnum.FieldKeyRuleType.NONE;
private String keyFormula = "";
private String storeFormula = "";
}