ui
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
export enum Role {
|
||||
// User = 'User',
|
||||
Admin = 'Admin'
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
export class Systemparameter{
|
||||
|
||||
|
||||
public schedulerTime: number;
|
||||
public leaseTaxCode: String;
|
||||
public vesselConfProcessLimit: number;
|
||||
public rowToDisplay: any;
|
||||
public linkToDisplay: any;
|
||||
public rowToAdd: any;
|
||||
public lovRowToDisplay:any;
|
||||
public lovLinkToDisplay: any;
|
||||
public oidserverName: any;
|
||||
public oidBase: any;
|
||||
public oidAdminUser: any;
|
||||
public oidServerPort: any;
|
||||
public userDefaultGroup: any;
|
||||
public defaultDepartment: any;
|
||||
public defaultPosition: any;
|
||||
public singleCharge: any;
|
||||
public firstDayOftheWeek:any;
|
||||
public hourPerShift: any;
|
||||
public cnBillingFrequency: any;
|
||||
public billingDepartmentCode: any;
|
||||
public basePriceList: any;
|
||||
public nonContainerServiceOrder: any;
|
||||
public ediMaeSchedulerONOFF: any;
|
||||
public ediSchedulerONOFF: any;
|
||||
public company_Display_Name:any;
|
||||
public upload_Logo:any;
|
||||
}
|
||||
14
frontend/angular-clarity-master/src/app/models/admin/user.ts
Normal file
14
frontend/angular-clarity-master/src/app/models/admin/user.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
export class User {
|
||||
public id: number;
|
||||
public name: string;
|
||||
public gender: string;
|
||||
public dob: string;
|
||||
public email: string;
|
||||
public picture:Blob;
|
||||
public location:string;
|
||||
public address1:string;
|
||||
public country:string;
|
||||
public phone:number;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
export class userdepartment{
|
||||
public departmentCode:String;
|
||||
public active:String;
|
||||
public description:String;
|
||||
public createdOn:Date;
|
||||
public createdBy:String;
|
||||
public updatedOn:Date;
|
||||
public updatedBy:String;
|
||||
public id:number;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
export class Usergrpmain {
|
||||
public usrGrp: number;
|
||||
public groupName:string;
|
||||
public groupDesc:string;
|
||||
public createby:string;
|
||||
public createdate:Date;
|
||||
public groupLevel:string;
|
||||
public status:string;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
import { userdepartment } from "./userdepartment";
|
||||
import { userposition } from "./userposition";
|
||||
|
||||
export class Usermain {
|
||||
public userId: number;
|
||||
public changePassw:string;
|
||||
public confirmPassword:string;
|
||||
public createby:string;
|
||||
public createdate:Date;
|
||||
public customerId:number;
|
||||
public customerNumer:String;
|
||||
public departmentCode:string;
|
||||
public departmentCodeString:string;
|
||||
public email:string;
|
||||
public firstLogin:String;
|
||||
public fullName:String;
|
||||
public langCode: String;
|
||||
public notification:String;
|
||||
public password1: String;
|
||||
public password2: String;
|
||||
public password3: String;
|
||||
public password4: String;
|
||||
public positionCodeString:String;
|
||||
public pwdChangedCnt:string;
|
||||
public shortName: string;
|
||||
public status:string;
|
||||
public updateby:string;
|
||||
public updatedate:Date;
|
||||
public username: string;
|
||||
public userPassw: string;
|
||||
public usrGrpId:number;
|
||||
public title: string;
|
||||
public expiryDate: Date;
|
||||
public lastPwdChangedDate:Date;
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
export class userposition{
|
||||
public positionCode:String;
|
||||
public active:String;
|
||||
public description:String;
|
||||
public createdOn:Date;
|
||||
public createdBy:String;
|
||||
public updatedOn:Date;
|
||||
public updatedBy:String;
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
export interface ActiveTechnology {
|
||||
id;
|
||||
name;
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
|
||||
|
||||
export class AdhocParam{
|
||||
|
||||
|
||||
public id: number;
|
||||
public table_allias_name: string;
|
||||
public column_name: string;
|
||||
public column_allias_name: string;
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
export class Audit {
|
||||
public accountId: number;
|
||||
public createdAt: Date;
|
||||
public createdBy: string;
|
||||
public updatedAt: Date;
|
||||
public updatedBy: string;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import { Audit } from "./Audit";
|
||||
export class Bcf_TechnologyStack extends Audit {
|
||||
public id: number;
|
||||
public tech_stack: string;
|
||||
public tech_stack_key: string;
|
||||
public tags: string;
|
||||
public base_prj_file_name: string;
|
||||
public active: boolean;
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
export interface ColumnList {
|
||||
// id: number;
|
||||
table_name: string;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
export class DateParam{
|
||||
|
||||
|
||||
public date_id: number;
|
||||
public col_table_alies_name_date: string;
|
||||
public col_date_query: string;
|
||||
public column_alias_date_query: string;
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
export interface FileData {
|
||||
id: number;
|
||||
text: string;
|
||||
/* public id: number;
|
||||
public text: string; */
|
||||
/* constructor(id: number, text: string) {
|
||||
this.id = id;
|
||||
this.text = text;
|
||||
} */
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
export interface FileDetails {
|
||||
id: number;
|
||||
text: string;
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
import { Audit } from "./Audit";
|
||||
import { ProjectSetup } from "./Project_setup";
|
||||
import { Rn_Fb_Header } from "./Rn_Fb_Header";
|
||||
|
||||
export class ModuleSetup extends Audit {
|
||||
public id: number;
|
||||
public moduleName: string;
|
||||
public description: string;
|
||||
public modulePrefix: string;
|
||||
public copyTo?: string;
|
||||
public technologyStack: string;
|
||||
public project: ProjectSetup;
|
||||
public rn_fb_headers: Rn_Fb_Header[];
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
import { Audit } from "./Audit";
|
||||
import { ModuleSetup } from "./Module_Setup";
|
||||
|
||||
export class ProjectSetup extends Audit {
|
||||
public id: number;
|
||||
public projectName: string;
|
||||
public description: string;
|
||||
public copyTo?: string;
|
||||
public technologyStack: string;
|
||||
public techStackId: number;
|
||||
public projectPrefix: string;
|
||||
public dbName: string;
|
||||
public dbUserName: string;
|
||||
public dbPassword: string;
|
||||
public portNumber: string;
|
||||
public namespace: string;
|
||||
public tags:string;
|
||||
public category:string;
|
||||
public accessibility:boolean;
|
||||
public modules: ModuleSetup[];
|
||||
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
export class RbColumns{
|
||||
|
||||
|
||||
public id: number;
|
||||
public column_name: string;
|
||||
public functions: string;
|
||||
public column_allias_name: string;
|
||||
public table_allies_name: string;
|
||||
public asc_desc: string;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
export class RbTables{
|
||||
public table_id: number;
|
||||
public table_name: string;
|
||||
public table_allias_name: string;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
export class ReportBuilder {
|
||||
public report_id: number;
|
||||
public report_name:string;
|
||||
public description: string;
|
||||
public report_tags: string;
|
||||
public servicename:string;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
export class ReportBuilderQuery {
|
||||
public master_select: string;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
import { Audit } from "./Audit";
|
||||
import { Rn_Cff_ActionBuilder_Line } from "./Rn_Cff_ActionBuilder_Line";
|
||||
import { Rn_Fb_Header } from "./Rn_Fb_Header";
|
||||
|
||||
export class Rn_Cff_ActionBuilder_Header extends Audit {
|
||||
public id: number;
|
||||
public rn_fb_header: Rn_Fb_Header;
|
||||
public technologyStack: string;
|
||||
public controllerName: string;
|
||||
public methodName: string;
|
||||
public actionName: string;
|
||||
public fileLocation: string;
|
||||
public actionBuilderLines: Rn_Cff_ActionBuilder_Line[];
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
import { Audit } from "./Audit";
|
||||
import { Rn_Cff_ActionBuilder_Header } from "./Rn_Cff_ActionBuilder_Header";
|
||||
|
||||
export class Rn_Cff_ActionBuilder_Line extends Audit {
|
||||
public id: number;
|
||||
public actionType1: string;
|
||||
public actionType2: string;
|
||||
public dataType: string;
|
||||
public variableName: string;
|
||||
public assignment: string;
|
||||
public message: string;
|
||||
public conditions: string;
|
||||
public forward: string;
|
||||
public equation: string;
|
||||
public seq: number;
|
||||
public action: string;
|
||||
public rn_cff_actionBuilderHeader: Rn_Cff_ActionBuilder_Header;
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
import { Audit } from "./Audit";
|
||||
import { Rn_Fb_Lines } from "./Rn_Fb_Lines";
|
||||
|
||||
export class Rn_Fb_Header extends Audit {
|
||||
public id: number;
|
||||
public techStack: string;
|
||||
public objectType: string;
|
||||
public subObjectType: string;
|
||||
public uiName: string;
|
||||
public formType: string;
|
||||
public tableName: string;
|
||||
public lineTableName: string;
|
||||
public multilineTableName: string;
|
||||
public formCode: string;
|
||||
public build: boolean;
|
||||
public updated: boolean;
|
||||
public menuName: string;
|
||||
public headerName: string;
|
||||
public convertedTableName: string;
|
||||
public rn_fb_lines: Rn_Fb_Lines[];
|
||||
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
import { Audit } from "./Audit";
|
||||
|
||||
export class Rn_Fb_Lines extends Audit {
|
||||
public id: number;
|
||||
public fieldName: string;
|
||||
public mapping: string;
|
||||
public dataType: string;
|
||||
public formCode: string;
|
||||
public key1: string;
|
||||
public type1: string;
|
||||
public mandatory: boolean;
|
||||
public hidden: boolean;
|
||||
public readonly: boolean;
|
||||
public dependent: boolean;
|
||||
public dependent_on: string;
|
||||
public dependent_sp: string;
|
||||
public dependent_sp_param: string;
|
||||
public validation_1: boolean;
|
||||
public val_type: string;
|
||||
public val_sp: string;
|
||||
public val_sp_param: string;
|
||||
public sequence: boolean;
|
||||
public seq_name: string;
|
||||
public seq_sp: string;
|
||||
public seq_sp_param: string;
|
||||
public default_1: boolean;
|
||||
public default_type: string;
|
||||
public default_value: string;
|
||||
public default_sp: string;
|
||||
public default_sp_param: string;
|
||||
public calculated_field: boolean;
|
||||
public cal_sp: string;
|
||||
public cal_sp_param: string;
|
||||
public add_to_grid: boolean;
|
||||
public sp_for_autocomplete: boolean;
|
||||
public sp_name_for_autocomplete: string;
|
||||
public sp_for_dropdown: boolean;
|
||||
public sp_name_for_dropdown: string;
|
||||
public type_field: string;
|
||||
public methodName: string;
|
||||
public seq: number;
|
||||
public form_type: string;
|
||||
public section_num: number;
|
||||
public button_num: string;
|
||||
public type2: string;
|
||||
public table_name?: string;
|
||||
public line_table_name: string;
|
||||
public line_table_no: number;
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
import { Audit } from "./Audit";
|
||||
import { Rn_Sub_Menu } from './Rn_Sub_Menu';
|
||||
|
||||
export class Rn_Main_Menu extends Audit {
|
||||
public menuItemId: number;
|
||||
public menuItemDesc: string;
|
||||
public mainMenuActionName : string;
|
||||
public mainMenuIconName: string;
|
||||
public menu_type: string;
|
||||
public mcreate:String;
|
||||
public mdelete:String;
|
||||
public medit:String;
|
||||
public menuId:Number;
|
||||
public mquery:String;
|
||||
public mvisible:String;
|
||||
public subMenus: Rn_Sub_Menu[];
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
import { Audit } from "./Audit";
|
||||
|
||||
export class Rn_Sub_Menu extends Audit {
|
||||
public menuItemId: number;
|
||||
public menuItemDesc: string;
|
||||
public mainMenuActionName : string;
|
||||
public mainMenuIconName: string;
|
||||
public menu_type: string;
|
||||
public mcreate:String;
|
||||
public mdelete:String;
|
||||
public medit:String;
|
||||
public menuId:Number;
|
||||
public mquery:String;
|
||||
public mvisible:String;
|
||||
//public menu_icon: string;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
export class StdParam{
|
||||
|
||||
|
||||
public std_id: number;
|
||||
public col_table_alies_name_std_para: string;
|
||||
public col_std_para_query: string;
|
||||
public field_type: string;
|
||||
public sp_for_dd: string;
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
export class WhereParam{
|
||||
|
||||
|
||||
public where_id: number;
|
||||
public explecity: string;
|
||||
public where_coloumn1_tbl_alias_name: string;
|
||||
public where_coloumn: string;
|
||||
public where_condition: string;
|
||||
public switch_control: string;
|
||||
public where_coloumn2_tbl_alias_name:string;
|
||||
public where_coloumn2:string;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
export interface WireFrame {
|
||||
header: Header;
|
||||
line: Line;
|
||||
}
|
||||
export interface Header {
|
||||
section: Section[];
|
||||
}
|
||||
export interface Line {
|
||||
section: Section[];
|
||||
}
|
||||
export interface Section {
|
||||
id: number;
|
||||
fieldName: string;
|
||||
mapping: string;
|
||||
dataType: string;
|
||||
type_field: string;
|
||||
section_num: number;
|
||||
fields: Field[];
|
||||
}
|
||||
|
||||
export interface Field {
|
||||
id: number;
|
||||
fieldName: string;
|
||||
mapping: string;
|
||||
dataType: string;
|
||||
type_field: string;
|
||||
section_num: number;
|
||||
seq: number;
|
||||
}
|
||||
@@ -0,0 +1,114 @@
|
||||
export interface WidgetModel {
|
||||
name: string;
|
||||
identifier: string;
|
||||
}
|
||||
export interface SubmenuItem {
|
||||
name: string;
|
||||
identifier: string;
|
||||
}
|
||||
|
||||
export interface WidgetModel1 {
|
||||
name: string;
|
||||
submenu?: SubmenuItem[];
|
||||
showSubmenu?: boolean; // Optional property to control submenu visibility
|
||||
identifier: string;
|
||||
}
|
||||
|
||||
export interface DashboardContentModel {
|
||||
cols: number;
|
||||
rows: number;
|
||||
y: number;
|
||||
x: number;
|
||||
chartid: number;
|
||||
component?: any;
|
||||
name: string;
|
||||
type?:string;
|
||||
}
|
||||
|
||||
export interface DashboardModel {
|
||||
id: number;
|
||||
username: string;
|
||||
dashboard: Array<DashboardContentModel>;
|
||||
}
|
||||
|
||||
|
||||
export interface DashboardContentModel2 {
|
||||
cols: number;
|
||||
rows: number;
|
||||
y: number;
|
||||
x: number;
|
||||
chartid: number;
|
||||
charttitle?: string;
|
||||
component?: any;
|
||||
name: string;
|
||||
type?: string;
|
||||
values?:Array<value>;
|
||||
imgoption?:Array<value>;
|
||||
keyValue?:string;
|
||||
fieldtext?:any;
|
||||
dropdown_type?:string;
|
||||
imageURL?:string;
|
||||
}
|
||||
|
||||
export interface DashboardModel2 {
|
||||
id: number;
|
||||
username: string;
|
||||
dashboard: Array<DashboardContentModel2>;
|
||||
}
|
||||
|
||||
export class value{
|
||||
label?:any="";
|
||||
value?:any="";
|
||||
}
|
||||
export class value1{
|
||||
label1?:any="";
|
||||
value1?:any="";
|
||||
}
|
||||
|
||||
|
||||
export const WidgetsMock: WidgetModel[] = [
|
||||
{
|
||||
name: 'Radar Chart',
|
||||
identifier: 'radar_chart'
|
||||
},
|
||||
{
|
||||
name: 'Doughnut Chart',
|
||||
identifier: 'doughnut_chart'
|
||||
},
|
||||
{
|
||||
name: 'Line Chart',
|
||||
identifier: 'line_chart'
|
||||
},
|
||||
{
|
||||
name: 'Bar Chart',
|
||||
identifier: 'bar_chart'
|
||||
},
|
||||
{
|
||||
name: 'Pie Chart',
|
||||
identifier: 'pie_chart'
|
||||
},
|
||||
{
|
||||
name: 'Polar Area Chart',
|
||||
identifier: 'polar_area_chart'
|
||||
},
|
||||
{
|
||||
name: 'Bubble Chart',
|
||||
identifier: 'bubble_chart'
|
||||
},
|
||||
{
|
||||
name: 'Scatter Chart',
|
||||
identifier: 'scatter_chart'
|
||||
},
|
||||
{
|
||||
name: 'Dynamic Chart',
|
||||
identifier: 'dynamic_chart'
|
||||
},
|
||||
{
|
||||
name: 'Financial Chart',
|
||||
identifier: 'financial_chart'
|
||||
},
|
||||
{
|
||||
name: 'To Do',
|
||||
identifier: 'to_do_chart'
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,9 @@
|
||||
export class Gitfile {
|
||||
|
||||
public content :String;
|
||||
public url :String;
|
||||
public sha:String;
|
||||
public encoding:String;
|
||||
public size:String;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
export class RptBuilder{
|
||||
|
||||
public id:number;
|
||||
public name;
|
||||
public folder: string;
|
||||
public query: string;
|
||||
public date_param_flag:boolean;
|
||||
public adhoc_param_flag:boolean;
|
||||
public adhoc_param_string: string;
|
||||
public std_param_json: string;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
export class Suregit {
|
||||
public path :String;
|
||||
public sha :String;
|
||||
public url :String;
|
||||
public type:Number;
|
||||
public mode:String;
|
||||
public size:String;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
export class Surename {
|
||||
public id :number;
|
||||
public message :String;
|
||||
public name :String;
|
||||
public timestamp:Number;
|
||||
public email:String;
|
||||
public username:String;
|
||||
public sha:any;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
export class Surestar {
|
||||
public id :number;
|
||||
public email :String;
|
||||
public watchers_count :number;
|
||||
public forks_count:Number;
|
||||
public stars_count:number;
|
||||
public size:String;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
export interface WidgetModel {
|
||||
name: string;
|
||||
identifier: string;
|
||||
}
|
||||
|
||||
export interface DashboardContentModel {
|
||||
cols: number;
|
||||
rows: number;
|
||||
y: number;
|
||||
x: number;
|
||||
chartid: number;
|
||||
component?: any;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export interface DashboardModel {
|
||||
id: number;
|
||||
username: string;
|
||||
dashboard: Array<DashboardContentModel>;
|
||||
}
|
||||
|
||||
export const WidgetsMock: WidgetModel[] = [
|
||||
// {
|
||||
// name: 'Text field',
|
||||
// identifier: 'text_field'
|
||||
// },
|
||||
{
|
||||
name: 'Text area',
|
||||
identifier: 'text_area'
|
||||
},
|
||||
{
|
||||
name: 'Table field',
|
||||
identifier: 'table_field'
|
||||
},
|
||||
// {
|
||||
// name: 'Background Color',
|
||||
// identifier: 'background_color'
|
||||
// },
|
||||
// {
|
||||
// name: 'Box field',
|
||||
// identifier: 'box_field'
|
||||
// },
|
||||
{
|
||||
name: 'Image field',
|
||||
identifier: 'img_field'
|
||||
},
|
||||
{
|
||||
name: 'Line field',
|
||||
identifier: 'line_field'
|
||||
},
|
||||
{
|
||||
name: 'QR code',
|
||||
identifier: 'qr_code'
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,10 @@
|
||||
import { Audit } from "../builder/Audit";
|
||||
|
||||
export class Bcf_Exception_Rule_Library extends Audit {
|
||||
id: number;
|
||||
tech_stack: string;
|
||||
object_type: string;
|
||||
sub_object_type: string;
|
||||
object_name_variable: string;
|
||||
object_name_dynamic_string: string;
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
import { Audit } from "../builder/Audit";
|
||||
import { Bcf_Extractor_Params } from "./Bcf_Extractor_Params";
|
||||
|
||||
export class Bcf_Extractor extends Audit {
|
||||
id: number;
|
||||
tech_stack: string;
|
||||
tech_stack_key: string;
|
||||
object_type: string;
|
||||
sub_object_type: string;
|
||||
form_type_name: string;
|
||||
std_wf_name: string;
|
||||
icon_file_name: string;
|
||||
sample_file_name: string;
|
||||
extractor_stage: string;
|
||||
rn_bcf_extractor_Params: Bcf_Extractor_Params[];
|
||||
}
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
import { Audit } from "../builder/Audit";
|
||||
|
||||
export class Bcf_Extractor_Params extends Audit {
|
||||
id: number;
|
||||
tech_stack: string;
|
||||
object_type: string;
|
||||
sub_object_type: string;
|
||||
file_code: any;
|
||||
name_string: string;
|
||||
address_string: string;
|
||||
moved_address_string: string;
|
||||
reference_address_string: string;
|
||||
description: string;
|
||||
file_name_var: string;
|
||||
file_name_dynamic_string: string;
|
||||
is_extraction_enabled: boolean;
|
||||
is_creation_enabled: boolean;
|
||||
total_project_path_dynamic_string:string;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
import { Audit } from "../builder/Audit";
|
||||
|
||||
export class Bcf_Rule_Library extends Audit {
|
||||
id: number;
|
||||
group_id: number;
|
||||
rule_name: string;
|
||||
tech_stack: string;
|
||||
object_type: string;
|
||||
sub_object_type: string;
|
||||
file_code: string;
|
||||
rule_type: string;
|
||||
identifier_start_string: string;
|
||||
identifier_end_string: string;
|
||||
replacement_string: string;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
import { BiDashLine } from './BiDashLine';
|
||||
|
||||
export class BiDashHeader{
|
||||
|
||||
|
||||
public header_id: number;
|
||||
public dashboard_name: string;
|
||||
public components: BiDashLine[];
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
export class BiDashLine{
|
||||
|
||||
|
||||
|
||||
public section_type: string;
|
||||
public widgets1: string;
|
||||
public widgets2: string;
|
||||
public widgets3: string;
|
||||
public widgets4: string;
|
||||
public widgets5: string;
|
||||
public widgets6: string;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
export class BiWidget {
|
||||
public id: number;
|
||||
public widget_name: string;
|
||||
public widget_description: string;
|
||||
public chart_type: string;
|
||||
public sql_query:string;
|
||||
public label:string;
|
||||
public color_scheme:string;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
//import { Audit } from "./Audit";
|
||||
import { Audit } from "../builder/Audit";
|
||||
export class DynamicForm extends Audit {
|
||||
public id: number;
|
||||
public form_id: number;
|
||||
public form_version: number;
|
||||
public comp1: string;
|
||||
public comp2: string;
|
||||
public comp3: string;
|
||||
public comp4: string;
|
||||
public comp5: string;
|
||||
public comp6: string;
|
||||
public comp7: string;
|
||||
public comp8: string;
|
||||
public comp9: string;
|
||||
public comp10: string;
|
||||
public comp11: string;
|
||||
public comp12: string;
|
||||
public comp13: string;
|
||||
public comp14: string;
|
||||
public comp15: string;
|
||||
public comp16: string;
|
||||
public comp17: string;
|
||||
public comp18: string;
|
||||
public comp19: string;
|
||||
public comp20: string;
|
||||
public comp21: string;
|
||||
public comp22: string;
|
||||
public comp23: string;
|
||||
public comp24: string;
|
||||
public comp25: string;
|
||||
public comp_l26: string;
|
||||
public comp_l27: string;
|
||||
public comp_l28: string;
|
||||
public comp_l29: string;
|
||||
public comp_l30: string;
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
import { Audit } from "../builder/Audit";
|
||||
|
||||
export class ExtensionField extends Audit {
|
||||
public id: number;
|
||||
public field_name: string;
|
||||
public mapping: string;
|
||||
public data_type: string;
|
||||
public form_code: string;
|
||||
public type: string;
|
||||
public isActive: boolean;
|
||||
|
||||
/* public mandatory: string;
|
||||
public hidden: string;
|
||||
public readonly: string;
|
||||
public dependent: string;
|
||||
public dependent_on: string;
|
||||
public dependent_sp: string;
|
||||
public dependent_sp_param: string;
|
||||
public validation_1: string;
|
||||
public val_type: string;
|
||||
public val_sp: string;
|
||||
public val_sp_param: string;
|
||||
public sequence: string;
|
||||
public seq_name: string;
|
||||
public seq_sp: string;
|
||||
public seq_sp_param: string;
|
||||
public default1: string;
|
||||
public default_type: string;
|
||||
public default_value: string;
|
||||
public default_sp: string;
|
||||
public default_sp_param: string;
|
||||
public calculated_field: string;
|
||||
public cal_sp: string;
|
||||
public cal_sp_param: string;
|
||||
public add_to_grid: string;
|
||||
public attr1: string;
|
||||
public attr2: string;
|
||||
public attr3: string;
|
||||
public drop_value: string;
|
||||
public dropdown: string;
|
||||
public sp_name: string;
|
||||
public ext_dd_id: string;
|
||||
public sp_name_forautocomplete: string;
|
||||
public ext_dependent_id: string;
|
||||
public radio: string;
|
||||
public radio_option: string; */
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
export interface Mapping {
|
||||
label: string;
|
||||
value: string;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
import { Audit } from "../builder/Audit";
|
||||
export class Rn_Forms_Component_Setup extends Audit {
|
||||
public component_id: number;
|
||||
public label: string;
|
||||
public type: string;
|
||||
public mapping: string;
|
||||
public mandatory: string;
|
||||
public readonly: string;
|
||||
public drop_values: string;
|
||||
public sp: string;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Rn_Forms_Component_Setup } from "./Rn_Forms_Component_Setup";
|
||||
import { Audit } from "../builder/Audit";
|
||||
export class Rn_Forms_Setup extends Audit {
|
||||
public form_id: number;
|
||||
public form_name: string;
|
||||
public form_desc: string;
|
||||
public related_to: string;
|
||||
public page_event: string;
|
||||
public button_caption: string;
|
||||
public components: Rn_Forms_Component_Setup[];
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
export class RuleCopy {
|
||||
public from_tech_stack: string;
|
||||
public from_object_type: string;
|
||||
public from_sub_object_type: string;
|
||||
public to_tech_stack: string;
|
||||
public to_object_type: string;
|
||||
public to_sub_object_type: string;
|
||||
|
||||
}
|
||||
|
||||
export interface Rule {
|
||||
tech_stack: string;
|
||||
object_type: string;
|
||||
sub_object_type: string;
|
||||
version: string;
|
||||
replacement_string: string;
|
||||
keyword: string;
|
||||
priority: number;
|
||||
service: string;
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
|
||||
export class student {
|
||||
public id: number;
|
||||
public wf_id:number;
|
||||
public current_json: string;
|
||||
public status: string;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
export interface TableList {
|
||||
// id: number;
|
||||
table_name: string;
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
export class ValidationError {
|
||||
field: any;
|
||||
message: any;
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
export class ApiRegisteryLine {
|
||||
public id: number;
|
||||
public url: string;
|
||||
public method: string;
|
||||
public header_id: number;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
10
frontend/angular-clarity-master/src/app/models/fnd/book.ts
Normal file
10
frontend/angular-clarity-master/src/app/models/fnd/book.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
export class book {
|
||||
public id: number;
|
||||
public booktype: string;
|
||||
public bookname: string;
|
||||
public price: number;
|
||||
public writer: string;
|
||||
public code:number;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
export class Department {
|
||||
public id: number;
|
||||
public department_code: string;
|
||||
public description: string;
|
||||
public active: string;
|
||||
public created_by:string;
|
||||
public created_on:string;
|
||||
public updated_by:string;
|
||||
public updated_on:string;
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
export class HealthCheckup {
|
||||
public id: number;
|
||||
public ip: string;
|
||||
public port: number;
|
||||
public serviceName: string;
|
||||
public createProject: boolean;
|
||||
public buildProject: boolean;
|
||||
public createDeployment: boolean;
|
||||
public deployApp: boolean;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
export class College {
|
||||
public studentid: number;
|
||||
public wf_instance_id:number;
|
||||
public studentname: string;
|
||||
public department: string;
|
||||
public joiningDate: string;
|
||||
public phone: number;
|
||||
public emailId:string;
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
export interface TableList {
|
||||
// id: number;
|
||||
table_name: string;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
import {book} from '../../models/fnd/book';
|
||||
|
||||
export class university {
|
||||
public id: number;
|
||||
public name: string;
|
||||
public email: string;
|
||||
public subject: string;
|
||||
public phone: number;
|
||||
public books: book[];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user