2024-10-09 22:21:57 +03:00
|
|
|
package _VisualDVM.GlobalData.SapforProfileSetting;
|
2024-10-07 14:22:52 +03:00
|
|
|
import Common.CommonConstants;
|
2024-10-07 00:58:29 +03:00
|
|
|
import Common.Database.Objects.iDBObject;
|
2023-09-17 22:13:42 +03:00
|
|
|
import com.sun.org.glassfish.gmbal.Description;
|
|
|
|
|
public class SapforProfileSetting extends iDBObject {
|
|
|
|
|
@Description("DEFAULT 'Undefined'")
|
2025-01-16 02:26:51 +03:00
|
|
|
public String name = "Undefined";
|
2023-09-17 22:13:42 +03:00
|
|
|
@Description("DEFAULT ''")
|
|
|
|
|
public String value = "";
|
|
|
|
|
@Description("DEFAULT -1")
|
2024-10-07 14:22:52 +03:00
|
|
|
public int sapforprofile_id = CommonConstants.Nan;
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|