提交 fd955cdc 编写于 作者: ibizdev's avatar ibizdev

jackwang 部署微服务应用

上级 5c69846f
......@@ -40,23 +40,36 @@ export class AuthServiceRegister {
*/
protected init(): void {
this.allAuthService.set('hroperationunit', () => import('@/authservice/hroperation-unit/hroperation-unit-auth-service'));
this.allAuthService.set('hrfamily', () => import('@/authservice/hrfamily/hrfamily-auth-service'));
this.allAuthService.set('hrreward', () => import('@/authservice/hrreward/hrreward-auth-service'));
this.allAuthService.set('hromhierarchypurposeref', () => import('@/authservice/hromhierarchy-purpose-ref/hromhierarchy-purpose-ref-auth-service'));
this.allAuthService.set('hromhierarchycat', () => import('@/authservice/hromhierarchy-cat/hromhierarchy-cat-auth-service'));
this.allAuthService.set('hrcertificate', () => import('@/authservice/hrcertificate/hrcertificate-auth-service'));
this.allAuthService.set('hrorgcontact', () => import('@/authservice/hrorg-contact/hrorg-contact-auth-service'));
this.allAuthService.set('hrempstate', () => import('@/authservice/hremp-state/hremp-state-auth-service'));
this.allAuthService.set('hrtechnicaltitle', () => import('@/authservice/hrtechnical-title/hrtechnical-title-auth-service'));
this.allAuthService.set('hremployee', () => import('@/authservice/hremployee/hremployee-auth-service'));
this.allAuthService.set('hrlegal', () => import('@/authservice/hrlegal/hrlegal-auth-service'));
this.allAuthService.set('hrdutyedu', () => import('@/authservice/hrduty-edu/hrduty-edu-auth-service'));
this.allAuthService.set('hrlanguageability', () => import('@/authservice/hrlanguage-ability/hrlanguage-ability-auth-service'));
this.allAuthService.set('hromhierarchypurpose', () => import('@/authservice/hromhierarchypurpose/hromhierarchypurpose-auth-service'));
this.allAuthService.set('hromhierarchy', () => import('@/authservice/hromhierarchy/hromhierarchy-auth-service'));
this.allAuthService.set('hrworkrecord', () => import('@/authservice/hrwork-record/hrwork-record-auth-service'));
this.allAuthService.set('hrdistribution', () => import('@/authservice/hrdistribution/hrdistribution-auth-service'));
this.allAuthService.set('hrorgaddress', () => import('@/authservice/hrorg-address/hrorg-address-auth-service'));
this.allAuthService.set('hrpost', () => import('@/authservice/hrpost/hrpost-auth-service'));
this.allAuthService.set('hrcontract', () => import('@/authservice/hrcontract/hrcontract-auth-service'));
this.allAuthService.set('hrpatent', () => import('@/authservice/hrpatent/hrpatent-auth-service'));
this.allAuthService.set('hrorganization', () => import('@/authservice/hrorganization/hrorganization-auth-service'));
this.allAuthService.set('hrdutyskill', () => import('@/authservice/hrduty-skill/hrduty-skill-auth-service'));
this.allAuthService.set('hrdutycert', () => import('@/authservice/hrduty-cert/hrduty-cert-auth-service'));
this.allAuthService.set('hreducation', () => import('@/authservice/hreducation/hreducation-auth-service'));
this.allAuthService.set('hrduty', () => import('@/authservice/hrduty/hrduty-auth-service'));
this.allAuthService.set('hrresearch', () => import('@/authservice/hrresearch/hrresearch-auth-service'));
this.allAuthService.set('hrpostrel', () => import('@/authservice/hrpost-rel/hrpost-rel-auth-service'));
this.allAuthService.set('hrtrainingrecord', () => import('@/authservice/hrtraining-record/hrtraining-record-auth-service'));
this.allAuthService.set('hrpaper', () => import('@/authservice/hrpaper/hrpaper-auth-service'));
this.allAuthService.set('hrarchives', () => import('@/authservice/hrarchives/hrarchives-auth-service'));
}
/**
......
import AuthService from '../auth-service';
/**
* 档案信息权限服务对象基类
*
* @export
* @class HRArchivesAuthServiceBase
* @extends {AuthService}
*/
export default class HRArchivesAuthServiceBase extends AuthService {
/**
* Creates an instance of HRArchivesAuthServiceBase.
*
* @param {*} [opts={}]
* @memberof HRArchivesAuthServiceBase
*/
constructor(opts: any = {}) {
super(opts);
}
/**
* 根据当前数据获取实体操作标识
*
* @param {*} mainSateOPPrivs 传入数据操作标识
* @returns {any}
* @memberof HRArchivesAuthServiceBase
*/
public getOPPrivs(mainSateOPPrivs:any):any{
let curDefaultOPPrivs:any = JSON.parse(JSON.stringify(this.defaultOPPrivs));
if(mainSateOPPrivs){
Object.assign(curDefaultOPPrivs,mainSateOPPrivs);
}
return curDefaultOPPrivs;
}
}
\ No newline at end of file
import HRArchivesAuthServiceBase from './hrarchives-auth-service-base';
/**
* 档案信息权限服务对象
*
* @export
* @class HRArchivesAuthService
* @extends {HRArchivesAuthServiceBase}
*/
export default class HRArchivesAuthService extends HRArchivesAuthServiceBase {
/**
* Creates an instance of HRArchivesAuthService.
*
* @param {*} [opts={}]
* @memberof HRArchivesAuthService
*/
constructor(opts: any = {}) {
super(opts);
}
}
\ No newline at end of file
import AuthService from '../auth-service';
/**
* 证书信息权限服务对象基类
*
* @export
* @class HRCertificateAuthServiceBase
* @extends {AuthService}
*/
export default class HRCertificateAuthServiceBase extends AuthService {
/**
* Creates an instance of HRCertificateAuthServiceBase.
*
* @param {*} [opts={}]
* @memberof HRCertificateAuthServiceBase
*/
constructor(opts: any = {}) {
super(opts);
}
/**
* 根据当前数据获取实体操作标识
*
* @param {*} mainSateOPPrivs 传入数据操作标识
* @returns {any}
* @memberof HRCertificateAuthServiceBase
*/
public getOPPrivs(mainSateOPPrivs:any):any{
let curDefaultOPPrivs:any = JSON.parse(JSON.stringify(this.defaultOPPrivs));
if(mainSateOPPrivs){
Object.assign(curDefaultOPPrivs,mainSateOPPrivs);
}
return curDefaultOPPrivs;
}
}
\ No newline at end of file
import HRCertificateAuthServiceBase from './hrcertificate-auth-service-base';
/**
* 证书信息权限服务对象
*
* @export
* @class HRCertificateAuthService
* @extends {HRCertificateAuthServiceBase}
*/
export default class HRCertificateAuthService extends HRCertificateAuthServiceBase {
/**
* Creates an instance of HRCertificateAuthService.
*
* @param {*} [opts={}]
* @memberof HRCertificateAuthService
*/
constructor(opts: any = {}) {
super(opts);
}
}
\ No newline at end of file
import AuthService from '../auth-service';
/**
* 合同信息权限服务对象基类
*
* @export
* @class HRContractAuthServiceBase
* @extends {AuthService}
*/
export default class HRContractAuthServiceBase extends AuthService {
/**
* Creates an instance of HRContractAuthServiceBase.
*
* @param {*} [opts={}]
* @memberof HRContractAuthServiceBase
*/
constructor(opts: any = {}) {
super(opts);
}
/**
* 根据当前数据获取实体操作标识
*
* @param {*} mainSateOPPrivs 传入数据操作标识
* @returns {any}
* @memberof HRContractAuthServiceBase
*/
public getOPPrivs(mainSateOPPrivs:any):any{
let curDefaultOPPrivs:any = JSON.parse(JSON.stringify(this.defaultOPPrivs));
if(mainSateOPPrivs){
Object.assign(curDefaultOPPrivs,mainSateOPPrivs);
}
return curDefaultOPPrivs;
}
}
\ No newline at end of file
import HRContractAuthServiceBase from './hrcontract-auth-service-base';
/**
* 合同信息权限服务对象
*
* @export
* @class HRContractAuthService
* @extends {HRContractAuthServiceBase}
*/
export default class HRContractAuthService extends HRContractAuthServiceBase {
/**
* Creates an instance of HRContractAuthService.
*
* @param {*} [opts={}]
* @memberof HRContractAuthService
*/
constructor(opts: any = {}) {
super(opts);
}
}
\ No newline at end of file
import AuthService from '../auth-service';
/**
* 教育信息权限服务对象基类
*
* @export
* @class HREducationAuthServiceBase
* @extends {AuthService}
*/
export default class HREducationAuthServiceBase extends AuthService {
/**
* Creates an instance of HREducationAuthServiceBase.
*
* @param {*} [opts={}]
* @memberof HREducationAuthServiceBase
*/
constructor(opts: any = {}) {
super(opts);
}
/**
* 根据当前数据获取实体操作标识
*
* @param {*} mainSateOPPrivs 传入数据操作标识
* @returns {any}
* @memberof HREducationAuthServiceBase
*/
public getOPPrivs(mainSateOPPrivs:any):any{
let curDefaultOPPrivs:any = JSON.parse(JSON.stringify(this.defaultOPPrivs));
if(mainSateOPPrivs){
Object.assign(curDefaultOPPrivs,mainSateOPPrivs);
}
return curDefaultOPPrivs;
}
}
\ No newline at end of file
import HREducationAuthServiceBase from './hreducation-auth-service-base';
/**
* 教育信息权限服务对象
*
* @export
* @class HREducationAuthService
* @extends {HREducationAuthServiceBase}
*/
export default class HREducationAuthService extends HREducationAuthServiceBase {
/**
* Creates an instance of HREducationAuthService.
*
* @param {*} [opts={}]
* @memberof HREducationAuthService
*/
constructor(opts: any = {}) {
super(opts);
}
}
\ No newline at end of file
import AuthService from '../auth-service';
/**
* 家庭情况权限服务对象基类
*
* @export
* @class HRFamilyAuthServiceBase
* @extends {AuthService}
*/
export default class HRFamilyAuthServiceBase extends AuthService {
/**
* Creates an instance of HRFamilyAuthServiceBase.
*
* @param {*} [opts={}]
* @memberof HRFamilyAuthServiceBase
*/
constructor(opts: any = {}) {
super(opts);
}
/**
* 根据当前数据获取实体操作标识
*
* @param {*} mainSateOPPrivs 传入数据操作标识
* @returns {any}
* @memberof HRFamilyAuthServiceBase
*/
public getOPPrivs(mainSateOPPrivs:any):any{
let curDefaultOPPrivs:any = JSON.parse(JSON.stringify(this.defaultOPPrivs));
if(mainSateOPPrivs){
Object.assign(curDefaultOPPrivs,mainSateOPPrivs);
}
return curDefaultOPPrivs;
}
}
\ No newline at end of file
import HRFamilyAuthServiceBase from './hrfamily-auth-service-base';
/**
* 家庭情况权限服务对象
*
* @export
* @class HRFamilyAuthService
* @extends {HRFamilyAuthServiceBase}
*/
export default class HRFamilyAuthService extends HRFamilyAuthServiceBase {
/**
* Creates an instance of HRFamilyAuthService.
*
* @param {*} [opts={}]
* @memberof HRFamilyAuthService
*/
constructor(opts: any = {}) {
super(opts);
}
}
\ No newline at end of file
import AuthService from '../auth-service';
/**
* 语言能力权限服务对象基类
*
* @export
* @class HRLanguageAbilityAuthServiceBase
* @extends {AuthService}
*/
export default class HRLanguageAbilityAuthServiceBase extends AuthService {
/**
* Creates an instance of HRLanguageAbilityAuthServiceBase.
*
* @param {*} [opts={}]
* @memberof HRLanguageAbilityAuthServiceBase
*/
constructor(opts: any = {}) {
super(opts);
}
/**
* 根据当前数据获取实体操作标识
*
* @param {*} mainSateOPPrivs 传入数据操作标识
* @returns {any}
* @memberof HRLanguageAbilityAuthServiceBase
*/
public getOPPrivs(mainSateOPPrivs:any):any{
let curDefaultOPPrivs:any = JSON.parse(JSON.stringify(this.defaultOPPrivs));
if(mainSateOPPrivs){
Object.assign(curDefaultOPPrivs,mainSateOPPrivs);
}
return curDefaultOPPrivs;
}
}
\ No newline at end of file
import HRLanguageAbilityAuthServiceBase from './hrlanguage-ability-auth-service-base';
/**
* 语言能力权限服务对象
*
* @export
* @class HRLanguageAbilityAuthService
* @extends {HRLanguageAbilityAuthServiceBase}
*/
export default class HRLanguageAbilityAuthService extends HRLanguageAbilityAuthServiceBase {
/**
* Creates an instance of HRLanguageAbilityAuthService.
*
* @param {*} [opts={}]
* @memberof HRLanguageAbilityAuthService
*/
constructor(opts: any = {}) {
super(opts);
}
}
\ No newline at end of file
import AuthService from '../auth-service';
/**
* 论文信息权限服务对象基类
*
* @export
* @class HRPaperAuthServiceBase
* @extends {AuthService}
*/
export default class HRPaperAuthServiceBase extends AuthService {
/**
* Creates an instance of HRPaperAuthServiceBase.
*
* @param {*} [opts={}]
* @memberof HRPaperAuthServiceBase
*/
constructor(opts: any = {}) {
super(opts);
}
/**
* 根据当前数据获取实体操作标识
*
* @param {*} mainSateOPPrivs 传入数据操作标识
* @returns {any}
* @memberof HRPaperAuthServiceBase
*/
public getOPPrivs(mainSateOPPrivs:any):any{
let curDefaultOPPrivs:any = JSON.parse(JSON.stringify(this.defaultOPPrivs));
if(mainSateOPPrivs){
Object.assign(curDefaultOPPrivs,mainSateOPPrivs);
}
return curDefaultOPPrivs;
}
}
\ No newline at end of file
import HRPaperAuthServiceBase from './hrpaper-auth-service-base';
/**
* 论文信息权限服务对象
*
* @export
* @class HRPaperAuthService
* @extends {HRPaperAuthServiceBase}
*/
export default class HRPaperAuthService extends HRPaperAuthServiceBase {
/**
* Creates an instance of HRPaperAuthService.
*
* @param {*} [opts={}]
* @memberof HRPaperAuthService
*/
constructor(opts: any = {}) {
super(opts);
}
}
\ No newline at end of file
import AuthService from '../auth-service';
/**
* 专利信息权限服务对象基类
*
* @export
* @class HRPatentAuthServiceBase
* @extends {AuthService}
*/
export default class HRPatentAuthServiceBase extends AuthService {
/**
* Creates an instance of HRPatentAuthServiceBase.
*
* @param {*} [opts={}]
* @memberof HRPatentAuthServiceBase
*/
constructor(opts: any = {}) {
super(opts);
}
/**
* 根据当前数据获取实体操作标识
*
* @param {*} mainSateOPPrivs 传入数据操作标识
* @returns {any}
* @memberof HRPatentAuthServiceBase
*/
public getOPPrivs(mainSateOPPrivs:any):any{
let curDefaultOPPrivs:any = JSON.parse(JSON.stringify(this.defaultOPPrivs));
if(mainSateOPPrivs){
Object.assign(curDefaultOPPrivs,mainSateOPPrivs);
}
return curDefaultOPPrivs;
}
}
\ No newline at end of file
import HRPatentAuthServiceBase from './hrpatent-auth-service-base';
/**
* 专利信息权限服务对象
*
* @export
* @class HRPatentAuthService
* @extends {HRPatentAuthServiceBase}
*/
export default class HRPatentAuthService extends HRPatentAuthServiceBase {
/**
* Creates an instance of HRPatentAuthService.
*
* @param {*} [opts={}]
* @memberof HRPatentAuthService
*/
constructor(opts: any = {}) {
super(opts);
}
}
\ No newline at end of file
import AuthService from '../auth-service';
/**
* 科研成果权限服务对象基类
*
* @export
* @class HRResearchAuthServiceBase
* @extends {AuthService}
*/
export default class HRResearchAuthServiceBase extends AuthService {
/**
* Creates an instance of HRResearchAuthServiceBase.
*
* @param {*} [opts={}]
* @memberof HRResearchAuthServiceBase
*/
constructor(opts: any = {}) {
super(opts);
}
/**
* 根据当前数据获取实体操作标识
*
* @param {*} mainSateOPPrivs 传入数据操作标识
* @returns {any}
* @memberof HRResearchAuthServiceBase
*/
public getOPPrivs(mainSateOPPrivs:any):any{
let curDefaultOPPrivs:any = JSON.parse(JSON.stringify(this.defaultOPPrivs));
if(mainSateOPPrivs){
Object.assign(curDefaultOPPrivs,mainSateOPPrivs);
}
return curDefaultOPPrivs;
}
}
\ No newline at end of file
import HRResearchAuthServiceBase from './hrresearch-auth-service-base';
/**
* 科研成果权限服务对象
*
* @export
* @class HRResearchAuthService
* @extends {HRResearchAuthServiceBase}
*/
export default class HRResearchAuthService extends HRResearchAuthServiceBase {
/**
* Creates an instance of HRResearchAuthService.
*
* @param {*} [opts={}]
* @memberof HRResearchAuthService
*/
constructor(opts: any = {}) {
super(opts);
}
}
\ No newline at end of file
import AuthService from '../auth-service';
/**
* 奖励惩罚权限服务对象基类
*
* @export
* @class HRRewardAuthServiceBase
* @extends {AuthService}
*/
export default class HRRewardAuthServiceBase extends AuthService {
/**
* Creates an instance of HRRewardAuthServiceBase.
*
* @param {*} [opts={}]
* @memberof HRRewardAuthServiceBase
*/
constructor(opts: any = {}) {
super(opts);
}
/**
* 根据当前数据获取实体操作标识
*
* @param {*} mainSateOPPrivs 传入数据操作标识
* @returns {any}
* @memberof HRRewardAuthServiceBase
*/
public getOPPrivs(mainSateOPPrivs:any):any{
let curDefaultOPPrivs:any = JSON.parse(JSON.stringify(this.defaultOPPrivs));
if(mainSateOPPrivs){
Object.assign(curDefaultOPPrivs,mainSateOPPrivs);
}
return curDefaultOPPrivs;
}
}
\ No newline at end of file
import HRRewardAuthServiceBase from './hrreward-auth-service-base';
/**
* 奖励惩罚权限服务对象
*
* @export
* @class HRRewardAuthService
* @extends {HRRewardAuthServiceBase}
*/
export default class HRRewardAuthService extends HRRewardAuthServiceBase {
/**
* Creates an instance of HRRewardAuthService.
*
* @param {*} [opts={}]
* @memberof HRRewardAuthService
*/
constructor(opts: any = {}) {
super(opts);
}
}
\ No newline at end of file
import AuthService from '../auth-service';
/**
* 职称信息权限服务对象基类
*
* @export
* @class HRTechnicalTitleAuthServiceBase
* @extends {AuthService}
*/
export default class HRTechnicalTitleAuthServiceBase extends AuthService {
/**
* Creates an instance of HRTechnicalTitleAuthServiceBase.
*
* @param {*} [opts={}]
* @memberof HRTechnicalTitleAuthServiceBase
*/
constructor(opts: any = {}) {
super(opts);
}
/**
* 根据当前数据获取实体操作标识
*
* @param {*} mainSateOPPrivs 传入数据操作标识
* @returns {any}
* @memberof HRTechnicalTitleAuthServiceBase
*/
public getOPPrivs(mainSateOPPrivs:any):any{
let curDefaultOPPrivs:any = JSON.parse(JSON.stringify(this.defaultOPPrivs));
if(mainSateOPPrivs){
Object.assign(curDefaultOPPrivs,mainSateOPPrivs);
}
return curDefaultOPPrivs;
}
}
\ No newline at end of file
import HRTechnicalTitleAuthServiceBase from './hrtechnical-title-auth-service-base';
/**
* 职称信息权限服务对象
*
* @export
* @class HRTechnicalTitleAuthService
* @extends {HRTechnicalTitleAuthServiceBase}
*/
export default class HRTechnicalTitleAuthService extends HRTechnicalTitleAuthServiceBase {
/**
* Creates an instance of HRTechnicalTitleAuthService.
*
* @param {*} [opts={}]
* @memberof HRTechnicalTitleAuthService
*/
constructor(opts: any = {}) {
super(opts);
}
}
\ No newline at end of file
import AuthService from '../auth-service';
/**
* 培训记录权限服务对象基类
*
* @export
* @class HRTrainingRecordAuthServiceBase
* @extends {AuthService}
*/
export default class HRTrainingRecordAuthServiceBase extends AuthService {
/**
* Creates an instance of HRTrainingRecordAuthServiceBase.
*
* @param {*} [opts={}]
* @memberof HRTrainingRecordAuthServiceBase
*/
constructor(opts: any = {}) {
super(opts);
}
/**
* 根据当前数据获取实体操作标识
*
* @param {*} mainSateOPPrivs 传入数据操作标识
* @returns {any}
* @memberof HRTrainingRecordAuthServiceBase
*/
public getOPPrivs(mainSateOPPrivs:any):any{
let curDefaultOPPrivs:any = JSON.parse(JSON.stringify(this.defaultOPPrivs));
if(mainSateOPPrivs){
Object.assign(curDefaultOPPrivs,mainSateOPPrivs);
}
return curDefaultOPPrivs;
}
}
\ No newline at end of file
import HRTrainingRecordAuthServiceBase from './hrtraining-record-auth-service-base';
/**
* 培训记录权限服务对象
*
* @export
* @class HRTrainingRecordAuthService
* @extends {HRTrainingRecordAuthServiceBase}
*/
export default class HRTrainingRecordAuthService extends HRTrainingRecordAuthServiceBase {
/**
* Creates an instance of HRTrainingRecordAuthService.
*
* @param {*} [opts={}]
* @memberof HRTrainingRecordAuthService
*/
constructor(opts: any = {}) {
super(opts);
}
}
\ No newline at end of file
import AuthService from '../auth-service';
/**
* 工作履历权限服务对象基类
*
* @export
* @class HRWorkRecordAuthServiceBase
* @extends {AuthService}
*/
export default class HRWorkRecordAuthServiceBase extends AuthService {
/**
* Creates an instance of HRWorkRecordAuthServiceBase.
*
* @param {*} [opts={}]
* @memberof HRWorkRecordAuthServiceBase
*/
constructor(opts: any = {}) {
super(opts);
}
/**
* 根据当前数据获取实体操作标识
*
* @param {*} mainSateOPPrivs 传入数据操作标识
* @returns {any}
* @memberof HRWorkRecordAuthServiceBase
*/
public getOPPrivs(mainSateOPPrivs:any):any{
let curDefaultOPPrivs:any = JSON.parse(JSON.stringify(this.defaultOPPrivs));
if(mainSateOPPrivs){
Object.assign(curDefaultOPPrivs,mainSateOPPrivs);
}
return curDefaultOPPrivs;
}
}
\ No newline at end of file
import HRWorkRecordAuthServiceBase from './hrwork-record-auth-service-base';
/**
* 工作履历权限服务对象
*
* @export
* @class HRWorkRecordAuthService
* @extends {HRWorkRecordAuthServiceBase}
*/
export default class HRWorkRecordAuthService extends HRWorkRecordAuthServiceBase {
/**
* Creates an instance of HRWorkRecordAuthService.
*
* @param {*} [opts={}]
* @memberof HRWorkRecordAuthService
*/
constructor(opts: any = {}) {
super(opts);
}
}
\ No newline at end of file
/**
* 档案信息
*
* @export
* @interface HRArchives
*/
export interface HRArchives {
/**
* 档案信息标识
*
* @returns {*}
* @memberof HRArchives
*/
hrarchivesid?: any;
/**
* 档案信息名称
*
* @returns {*}
* @memberof HRArchives
*/
hrarchivesname?: any;
/**
* 建立人
*
* @returns {*}
* @memberof HRArchives
*/
createman?: any;
/**
* 建立时间
*
* @returns {*}
* @memberof HRArchives
*/
createdate?: any;
/**
* 更新人
*
* @returns {*}
* @memberof HRArchives
*/
updateman?: any;
/**
* 更新时间
*
* @returns {*}
* @memberof HRArchives
*/
updatedate?: any;
/**
* 员工标识
*
* @returns {*}
* @memberof HRArchives
*/
hremployeeid?: any;
/**
* 员工姓名
*
* @returns {*}
* @memberof HRArchives
*/
hremployeename?: any;
}
\ No newline at end of file
/**
* 证书信息
*
* @export
* @interface HRCertificate
*/
export interface HRCertificate {
/**
* 证书信息标识
*
* @returns {*}
* @memberof HRCertificate
*/
hrcertificateid?: any;
/**
* 证书信息名称
*
* @returns {*}
* @memberof HRCertificate
*/
hrcertificatename?: any;
/**
* 建立时间
*
* @returns {*}
* @memberof HRCertificate
*/
createdate?: any;
/**
* 更新人
*
* @returns {*}
* @memberof HRCertificate
*/
updateman?: any;
/**
* 建立人
*
* @returns {*}
* @memberof HRCertificate
*/
createman?: any;
/**
* 更新时间
*
* @returns {*}
* @memberof HRCertificate
*/
updatedate?: any;
/**
* 员工标识
*
* @returns {*}
* @memberof HRCertificate
*/
hremployeeid?: any;
/**
* 员工姓名
*
* @returns {*}
* @memberof HRCertificate
*/
hremployeename?: any;
}
\ No newline at end of file
/**
* 合同信息
*
* @export
* @interface HRContract
*/
export interface HRContract {
/**
* 建立人
*
* @returns {*}
* @memberof HRContract
*/
createman?: any;
/**
* 合同信息标识
*
* @returns {*}
* @memberof HRContract
*/
hrcontractid?: any;
/**
* 合同信息名称
*
* @returns {*}
* @memberof HRContract
*/
hrcontractname?: any;
/**
* 建立时间
*
* @returns {*}
* @memberof HRContract
*/
createdate?: any;
/**
* 更新时间
*
* @returns {*}
* @memberof HRContract
*/
updatedate?: any;
/**
* 更新人
*
* @returns {*}
* @memberof HRContract
*/
updateman?: any;
/**
* 员工标识
*
* @returns {*}
* @memberof HRContract
*/
hremployeeid?: any;
/**
* 员工姓名
*
* @returns {*}
* @memberof HRContract
*/
hremployeename?: any;
}
\ No newline at end of file
/**
* 教育信息
*
* @export
* @interface HREducation
*/
export interface HREducation {
/**
* 教育信息标识
*
* @returns {*}
* @memberof HREducation
*/
hreducationid?: any;
/**
* 教育信息名称
*
* @returns {*}
* @memberof HREducation
*/
hreducationname?: any;
/**
* 建立时间
*
* @returns {*}
* @memberof HREducation
*/
createdate?: any;
/**
* 建立人
*
* @returns {*}
* @memberof HREducation
*/
createman?: any;
/**
* 更新人
*
* @returns {*}
* @memberof HREducation
*/
updateman?: any;
/**
* 更新时间
*
* @returns {*}
* @memberof HREducation
*/
updatedate?: any;
/**
* 员工标识
*
* @returns {*}
* @memberof HREducation
*/
hremployeeid?: any;
/**
* 员工姓名
*
* @returns {*}
* @memberof HREducation
*/
hremployeename?: any;
}
\ No newline at end of file
/**
* 家庭情况
*
* @export
* @interface HRFamily
*/
export interface HRFamily {
/**
* 建立时间
*
* @returns {*}
* @memberof HRFamily
*/
createdate?: any;
/**
* 家庭情况名称
*
* @returns {*}
* @memberof HRFamily
*/
hrfamilyname?: any;
/**
* 建立人
*
* @returns {*}
* @memberof HRFamily
*/
createman?: any;
/**
* 更新人
*
* @returns {*}
* @memberof HRFamily
*/
updateman?: any;
/**
* 家庭情况标识
*
* @returns {*}
* @memberof HRFamily
*/
hrfamilyid?: any;
/**
* 更新时间
*
* @returns {*}
* @memberof HRFamily
*/
updatedate?: any;
/**
* 员工标识
*
* @returns {*}
* @memberof HRFamily
*/
hremployeeid?: any;
/**
* 员工姓名
*
* @returns {*}
* @memberof HRFamily
*/
hremployeename?: any;
}
\ No newline at end of file
/**
* 语言能力
*
* @export
* @interface HRLanguageAbility
*/
export interface HRLanguageAbility {
/**
* 更新人
*
* @returns {*}
* @memberof HRLanguageAbility
*/
updateman?: any;
/**
* 语言能力标识
*
* @returns {*}
* @memberof HRLanguageAbility
*/
hrlanguageabilityid?: any;
/**
* 建立时间
*
* @returns {*}
* @memberof HRLanguageAbility
*/
createdate?: any;
/**
* 语言能力名称
*
* @returns {*}
* @memberof HRLanguageAbility
*/
hrlanguageabilityname?: any;
/**
* 建立人
*
* @returns {*}
* @memberof HRLanguageAbility
*/
createman?: any;
/**
* 更新时间
*
* @returns {*}
* @memberof HRLanguageAbility
*/
updatedate?: any;
/**
* 员工标识
*
* @returns {*}
* @memberof HRLanguageAbility
*/
hremployeeid?: any;
/**
* 员工姓名
*
* @returns {*}
* @memberof HRLanguageAbility
*/
hremployeename?: any;
}
\ No newline at end of file
/**
* 论文信息
*
* @export
* @interface HRPaper
*/
export interface HRPaper {
/**
* 论文信息标识
*
* @returns {*}
* @memberof HRPaper
*/
hrpaperid?: any;
/**
* 建立人
*
* @returns {*}
* @memberof HRPaper
*/
createman?: any;
/**
* 更新时间
*
* @returns {*}
* @memberof HRPaper
*/
updatedate?: any;
/**
* 更新人
*
* @returns {*}
* @memberof HRPaper
*/
updateman?: any;
/**
* 论文信息名称
*
* @returns {*}
* @memberof HRPaper
*/
hrpapername?: any;
/**
* 建立时间
*
* @returns {*}
* @memberof HRPaper
*/
createdate?: any;
/**
* 员工标识
*
* @returns {*}
* @memberof HRPaper
*/
hremployeeid?: any;
/**
* 员工姓名
*
* @returns {*}
* @memberof HRPaper
*/
hremployeename?: any;
}
\ No newline at end of file
/**
* 专利信息
*
* @export
* @interface HRPatent
*/
export interface HRPatent {
/**
* 专利信息标识
*
* @returns {*}
* @memberof HRPatent
*/
hrpatentid?: any;
/**
* 建立人
*
* @returns {*}
* @memberof HRPatent
*/
createman?: any;
/**
* 专利信息名称
*
* @returns {*}
* @memberof HRPatent
*/
hrpatentname?: any;
/**
* 建立时间
*
* @returns {*}
* @memberof HRPatent
*/
createdate?: any;
/**
* 更新人
*
* @returns {*}
* @memberof HRPatent
*/
updateman?: any;
/**
* 更新时间
*
* @returns {*}
* @memberof HRPatent
*/
updatedate?: any;
/**
* 员工标识
*
* @returns {*}
* @memberof HRPatent
*/
hremployeeid?: any;
/**
* 员工姓名
*
* @returns {*}
* @memberof HRPatent
*/
hremployeename?: any;
}
\ No newline at end of file
/**
* 科研成果
*
* @export
* @interface HRResearch
*/
export interface HRResearch {
/**
* 科研成果标识
*
* @returns {*}
* @memberof HRResearch
*/
hrresearchid?: any;
/**
* 建立时间
*
* @returns {*}
* @memberof HRResearch
*/
createdate?: any;
/**
* 建立人
*
* @returns {*}
* @memberof HRResearch
*/
createman?: any;
/**
* 更新时间
*
* @returns {*}
* @memberof HRResearch
*/
updatedate?: any;
/**
* 科研成果名称
*
* @returns {*}
* @memberof HRResearch
*/
hrresearchname?: any;
/**
* 更新人
*
* @returns {*}
* @memberof HRResearch
*/
updateman?: any;
/**
* 员工标识
*
* @returns {*}
* @memberof HRResearch
*/
hremployeeid?: any;
/**
* 员工姓名
*
* @returns {*}
* @memberof HRResearch
*/
hremployeename?: any;
}
\ No newline at end of file
/**
* 奖励惩罚
*
* @export
* @interface HRReward
*/
export interface HRReward {
/**
* 奖励惩罚名称
*
* @returns {*}
* @memberof HRReward
*/
hrrewardname?: any;
/**
* 奖励惩罚标识
*
* @returns {*}
* @memberof HRReward
*/
hrrewardid?: any;
/**
* 建立人
*
* @returns {*}
* @memberof HRReward
*/
createman?: any;
/**
* 更新时间
*
* @returns {*}
* @memberof HRReward
*/
updatedate?: any;
/**
* 建立时间
*
* @returns {*}
* @memberof HRReward
*/
createdate?: any;
/**
* 更新人
*
* @returns {*}
* @memberof HRReward
*/
updateman?: any;
/**
* 员工标识
*
* @returns {*}
* @memberof HRReward
*/
hremployeeid?: any;
/**
* 员工姓名
*
* @returns {*}
* @memberof HRReward
*/
hremployeename?: any;
}
\ No newline at end of file
/**
* 职称信息
*
* @export
* @interface HRTechnicalTitle
*/
export interface HRTechnicalTitle {
/**
* 职称信息标识
*
* @returns {*}
* @memberof HRTechnicalTitle
*/
hrtechnicaltitleid?: any;
/**
* 建立人
*
* @returns {*}
* @memberof HRTechnicalTitle
*/
createman?: any;
/**
* 更新时间
*
* @returns {*}
* @memberof HRTechnicalTitle
*/
updatedate?: any;
/**
* 更新人
*
* @returns {*}
* @memberof HRTechnicalTitle
*/
updateman?: any;
/**
* 建立时间
*
* @returns {*}
* @memberof HRTechnicalTitle
*/
createdate?: any;
/**
* 职称信息名称
*
* @returns {*}
* @memberof HRTechnicalTitle
*/
hrtechnicaltitlename?: any;
/**
* 员工标识
*
* @returns {*}
* @memberof HRTechnicalTitle
*/
hremployeeid?: any;
/**
* 员工姓名
*
* @returns {*}
* @memberof HRTechnicalTitle
*/
hremployeename?: any;
}
\ No newline at end of file
/**
* 培训记录
*
* @export
* @interface HRTrainingRecord
*/
export interface HRTrainingRecord {
/**
* 培训记录标识
*
* @returns {*}
* @memberof HRTrainingRecord
*/
hrtrainingrecordid?: any;
/**
* 建立时间
*
* @returns {*}
* @memberof HRTrainingRecord
*/
createdate?: any;
/**
* 更新时间
*
* @returns {*}
* @memberof HRTrainingRecord
*/
updatedate?: any;
/**
* 培训记录名称
*
* @returns {*}
* @memberof HRTrainingRecord
*/
hrtrainingrecordname?: any;
/**
* 建立人
*
* @returns {*}
* @memberof HRTrainingRecord
*/
createman?: any;
/**
* 更新人
*
* @returns {*}
* @memberof HRTrainingRecord
*/
updateman?: any;
/**
* 员工标识
*
* @returns {*}
* @memberof HRTrainingRecord
*/
hremployeeid?: any;
/**
* 员工姓名
*
* @returns {*}
* @memberof HRTrainingRecord
*/
hremployeename?: any;
}
\ No newline at end of file
/**
* 工作履历
*
* @export
* @interface HRWorkRecord
*/
export interface HRWorkRecord {
/**
* 工作履历标识
*
* @returns {*}
* @memberof HRWorkRecord
*/
hrworkrecordid?: any;
/**
* 工作履历名称
*
* @returns {*}
* @memberof HRWorkRecord
*/
hrworkrecordname?: any;
/**
* 更新人
*
* @returns {*}
* @memberof HRWorkRecord
*/
updateman?: any;
/**
* 建立时间
*
* @returns {*}
* @memberof HRWorkRecord
*/
createdate?: any;
/**
* 建立人
*
* @returns {*}
* @memberof HRWorkRecord
*/
createman?: any;
/**
* 更新时间
*
* @returns {*}
* @memberof HRWorkRecord
*/
updatedate?: any;
/**
* 员工标识
*
* @returns {*}
* @memberof HRWorkRecord
*/
hremployeeid?: any;
/**
* 员工姓名
*
* @returns {*}
* @memberof HRWorkRecord
*/
hremployeename?: any;
}
\ No newline at end of file
import hroperationunit_en_US from '@locale/lanres/entities/hroperation-unit/hroperation-unit_en_US';
import hrfamily_en_US from '@locale/lanres/entities/hrfamily/hrfamily_en_US';
import hrreward_en_US from '@locale/lanres/entities/hrreward/hrreward_en_US';
import hromhierarchypurposeref_en_US from '@locale/lanres/entities/hromhierarchy-purpose-ref/hromhierarchy-purpose-ref_en_US';
import hromhierarchycat_en_US from '@locale/lanres/entities/hromhierarchy-cat/hromhierarchy-cat_en_US';
import hrcertificate_en_US from '@locale/lanres/entities/hrcertificate/hrcertificate_en_US';
import hrorgcontact_en_US from '@locale/lanres/entities/hrorg-contact/hrorg-contact_en_US';
import hrempstate_en_US from '@locale/lanres/entities/hremp-state/hremp-state_en_US';
import hrtechnicaltitle_en_US from '@locale/lanres/entities/hrtechnical-title/hrtechnical-title_en_US';
import hremployee_en_US from '@locale/lanres/entities/hremployee/hremployee_en_US';
import hrlegal_en_US from '@locale/lanres/entities/hrlegal/hrlegal_en_US';
import hrdutyedu_en_US from '@locale/lanres/entities/hrduty-edu/hrduty-edu_en_US';
import hrlanguageability_en_US from '@locale/lanres/entities/hrlanguage-ability/hrlanguage-ability_en_US';
import hromhierarchypurpose_en_US from '@locale/lanres/entities/hromhierarchypurpose/hromhierarchypurpose_en_US';
import hromhierarchy_en_US from '@locale/lanres/entities/hromhierarchy/hromhierarchy_en_US';
import hrworkrecord_en_US from '@locale/lanres/entities/hrwork-record/hrwork-record_en_US';
import hrdistribution_en_US from '@locale/lanres/entities/hrdistribution/hrdistribution_en_US';
import hrorgaddress_en_US from '@locale/lanres/entities/hrorg-address/hrorg-address_en_US';
import hrpost_en_US from '@locale/lanres/entities/hrpost/hrpost_en_US';
import hrcontract_en_US from '@locale/lanres/entities/hrcontract/hrcontract_en_US';
import hrpatent_en_US from '@locale/lanres/entities/hrpatent/hrpatent_en_US';
import hrorganization_en_US from '@locale/lanres/entities/hrorganization/hrorganization_en_US';
import hrdutyskill_en_US from '@locale/lanres/entities/hrduty-skill/hrduty-skill_en_US';
import hrdutycert_en_US from '@locale/lanres/entities/hrduty-cert/hrduty-cert_en_US';
import hreducation_en_US from '@locale/lanres/entities/hreducation/hreducation_en_US';
import hrduty_en_US from '@locale/lanres/entities/hrduty/hrduty_en_US';
import hrresearch_en_US from '@locale/lanres/entities/hrresearch/hrresearch_en_US';
import hrpostrel_en_US from '@locale/lanres/entities/hrpost-rel/hrpost-rel_en_US';
import hrtrainingrecord_en_US from '@locale/lanres/entities/hrtraining-record/hrtraining-record_en_US';
import hrpaper_en_US from '@locale/lanres/entities/hrpaper/hrpaper_en_US';
import hrarchives_en_US from '@locale/lanres/entities/hrarchives/hrarchives_en_US';
import components_en_US from '@locale/lanres/components/components_en_US';
import codelist_en_US from '@locale/lanres/codelist/codelist_en_US';
import userCustom_en_US from '@locale/lanres/userCustom/userCustom_en_US';
......@@ -255,23 +268,36 @@ export default {
},
entities: {
hroperationunit: hroperationunit_en_US,
hrfamily: hrfamily_en_US,
hrreward: hrreward_en_US,
hromhierarchypurposeref: hromhierarchypurposeref_en_US,
hromhierarchycat: hromhierarchycat_en_US,
hrcertificate: hrcertificate_en_US,
hrorgcontact: hrorgcontact_en_US,
hrempstate: hrempstate_en_US,
hrtechnicaltitle: hrtechnicaltitle_en_US,
hremployee: hremployee_en_US,
hrlegal: hrlegal_en_US,
hrdutyedu: hrdutyedu_en_US,
hrlanguageability: hrlanguageability_en_US,
hromhierarchypurpose: hromhierarchypurpose_en_US,
hromhierarchy: hromhierarchy_en_US,
hrworkrecord: hrworkrecord_en_US,
hrdistribution: hrdistribution_en_US,
hrorgaddress: hrorgaddress_en_US,
hrpost: hrpost_en_US,
hrcontract: hrcontract_en_US,
hrpatent: hrpatent_en_US,
hrorganization: hrorganization_en_US,
hrdutyskill: hrdutyskill_en_US,
hrdutycert: hrdutycert_en_US,
hreducation: hreducation_en_US,
hrduty: hrduty_en_US,
hrresearch: hrresearch_en_US,
hrpostrel: hrpostrel_en_US,
hrtrainingrecord: hrtrainingrecord_en_US,
hrpaper: hrpaper_en_US,
hrarchives: hrarchives_en_US,
},
components: components_en_US,
codelist: codelist_en_US,
......
import hroperationunit_zh_CN from '@locale/lanres/entities/hroperation-unit/hroperation-unit_zh_CN';
import hrfamily_zh_CN from '@locale/lanres/entities/hrfamily/hrfamily_zh_CN';
import hrreward_zh_CN from '@locale/lanres/entities/hrreward/hrreward_zh_CN';
import hromhierarchypurposeref_zh_CN from '@locale/lanres/entities/hromhierarchy-purpose-ref/hromhierarchy-purpose-ref_zh_CN';
import hromhierarchycat_zh_CN from '@locale/lanres/entities/hromhierarchy-cat/hromhierarchy-cat_zh_CN';
import hrcertificate_zh_CN from '@locale/lanres/entities/hrcertificate/hrcertificate_zh_CN';
import hrorgcontact_zh_CN from '@locale/lanres/entities/hrorg-contact/hrorg-contact_zh_CN';
import hrempstate_zh_CN from '@locale/lanres/entities/hremp-state/hremp-state_zh_CN';
import hrtechnicaltitle_zh_CN from '@locale/lanres/entities/hrtechnical-title/hrtechnical-title_zh_CN';
import hremployee_zh_CN from '@locale/lanres/entities/hremployee/hremployee_zh_CN';
import hrlegal_zh_CN from '@locale/lanres/entities/hrlegal/hrlegal_zh_CN';
import hrdutyedu_zh_CN from '@locale/lanres/entities/hrduty-edu/hrduty-edu_zh_CN';
import hrlanguageability_zh_CN from '@locale/lanres/entities/hrlanguage-ability/hrlanguage-ability_zh_CN';
import hromhierarchypurpose_zh_CN from '@locale/lanres/entities/hromhierarchypurpose/hromhierarchypurpose_zh_CN';
import hromhierarchy_zh_CN from '@locale/lanres/entities/hromhierarchy/hromhierarchy_zh_CN';
import hrworkrecord_zh_CN from '@locale/lanres/entities/hrwork-record/hrwork-record_zh_CN';
import hrdistribution_zh_CN from '@locale/lanres/entities/hrdistribution/hrdistribution_zh_CN';
import hrorgaddress_zh_CN from '@locale/lanres/entities/hrorg-address/hrorg-address_zh_CN';
import hrpost_zh_CN from '@locale/lanres/entities/hrpost/hrpost_zh_CN';
import hrcontract_zh_CN from '@locale/lanres/entities/hrcontract/hrcontract_zh_CN';
import hrpatent_zh_CN from '@locale/lanres/entities/hrpatent/hrpatent_zh_CN';
import hrorganization_zh_CN from '@locale/lanres/entities/hrorganization/hrorganization_zh_CN';
import hrdutyskill_zh_CN from '@locale/lanres/entities/hrduty-skill/hrduty-skill_zh_CN';
import hrdutycert_zh_CN from '@locale/lanres/entities/hrduty-cert/hrduty-cert_zh_CN';
import hreducation_zh_CN from '@locale/lanres/entities/hreducation/hreducation_zh_CN';
import hrduty_zh_CN from '@locale/lanres/entities/hrduty/hrduty_zh_CN';
import hrresearch_zh_CN from '@locale/lanres/entities/hrresearch/hrresearch_zh_CN';
import hrpostrel_zh_CN from '@locale/lanres/entities/hrpost-rel/hrpost-rel_zh_CN';
import hrtrainingrecord_zh_CN from '@locale/lanres/entities/hrtraining-record/hrtraining-record_zh_CN';
import hrpaper_zh_CN from '@locale/lanres/entities/hrpaper/hrpaper_zh_CN';
import hrarchives_zh_CN from '@locale/lanres/entities/hrarchives/hrarchives_zh_CN';
import components_zh_CN from '@locale/lanres/components/components_zh_CN';
import codelist_zh_CN from '@locale/lanres/codelist/codelist_zh_CN';
import userCustom_zh_CN from '@locale/lanres/userCustom/userCustom_zh_CN';
......@@ -254,23 +267,36 @@ export default {
},
entities: {
hroperationunit: hroperationunit_zh_CN,
hrfamily: hrfamily_zh_CN,
hrreward: hrreward_zh_CN,
hromhierarchypurposeref: hromhierarchypurposeref_zh_CN,
hromhierarchycat: hromhierarchycat_zh_CN,
hrcertificate: hrcertificate_zh_CN,
hrorgcontact: hrorgcontact_zh_CN,
hrempstate: hrempstate_zh_CN,
hrtechnicaltitle: hrtechnicaltitle_zh_CN,
hremployee: hremployee_zh_CN,
hrlegal: hrlegal_zh_CN,
hrdutyedu: hrdutyedu_zh_CN,
hrlanguageability: hrlanguageability_zh_CN,
hromhierarchypurpose: hromhierarchypurpose_zh_CN,
hromhierarchy: hromhierarchy_zh_CN,
hrworkrecord: hrworkrecord_zh_CN,
hrdistribution: hrdistribution_zh_CN,
hrorgaddress: hrorgaddress_zh_CN,
hrpost: hrpost_zh_CN,
hrcontract: hrcontract_zh_CN,
hrpatent: hrpatent_zh_CN,
hrorganization: hrorganization_zh_CN,
hrdutyskill: hrdutyskill_zh_CN,
hrdutycert: hrdutycert_zh_CN,
hreducation: hreducation_zh_CN,
hrduty: hrduty_zh_CN,
hrresearch: hrresearch_zh_CN,
hrpostrel: hrpostrel_zh_CN,
hrtrainingrecord: hrtrainingrecord_zh_CN,
hrpaper: hrpaper_zh_CN,
hrarchives: hrarchives_zh_CN,
},
components: components_zh_CN,
codelist: codelist_zh_CN,
......
export default {
fields: {
hrarchivesid: "档案信息标识",
hrarchivesname: "档案信息名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
editview: {
caption: "档案信息",
title: "档案信息编辑视图",
},
gridview: {
caption: "档案信息",
title: "档案信息表格视图",
},
},
main_form: {
details: {
group1: "档案信息基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "档案信息标识",
srfmajortext: "档案信息名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hrarchivesname: "档案信息名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hrarchivesid: "档案信息标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hrarchivesname: "档案信息名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "Save",
tip: "Save",
},
tbitem4: {
caption: "Save And New",
tip: "Save And New",
},
tbitem5: {
caption: "Save And Close",
tip: "Save And Close Window",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "Remove And Close",
tip: "Remove And Close Window",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "New",
tip: "New",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "Copy",
tip: "Copy {0}",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "Help",
tip: "Help",
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "New",
tip: "New",
},
tbitem4: {
caption: "Edit",
tip: "Edit {0}",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "Remove",
tip: "Remove {0}",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "Export",
tip: "Export {0} Data To Excel",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "Filter",
tip: "Filter",
},
},
};
\ No newline at end of file
export default {
fields: {
hrarchivesid: "档案信息标识",
hrarchivesname: "档案信息名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
editview: {
caption: "档案信息",
title: "档案信息编辑视图",
},
gridview: {
caption: "档案信息",
title: "档案信息表格视图",
},
},
main_form: {
details: {
group1: "档案信息基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "档案信息标识",
srfmajortext: "档案信息名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hrarchivesname: "档案信息名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hrarchivesid: "档案信息标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hrarchivesname: "档案信息名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "保存",
tip: "保存",
},
tbitem4: {
caption: "保存并新建",
tip: "保存并新建",
},
tbitem5: {
caption: "保存并关闭",
tip: "保存并关闭",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "删除并关闭",
tip: "删除并关闭",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "新建",
tip: "新建",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "拷贝",
tip: "拷贝",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "帮助",
tip: "帮助",
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "新建",
tip: "新建",
},
tbitem4: {
caption: "编辑",
tip: "编辑",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "删除",
tip: "删除",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "导出",
tip: "导出",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "过滤",
tip: "过滤",
},
},
};
\ No newline at end of file
export default {
fields: {
hrcertificateid: "证书信息标识",
hrcertificatename: "证书信息名称",
createdate: "建立时间",
updateman: "更新人",
createman: "建立人",
updatedate: "更新时间",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
gridview: {
caption: "证书信息",
title: "证书信息表格视图",
},
editview: {
caption: "证书信息",
title: "证书信息编辑视图",
},
},
main_form: {
details: {
group1: "证书信息基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "证书信息标识",
srfmajortext: "证书信息名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hrcertificatename: "证书信息名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hrcertificateid: "证书信息标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hrcertificatename: "证书信息名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "New",
tip: "New",
},
tbitem4: {
caption: "Edit",
tip: "Edit {0}",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "Remove",
tip: "Remove {0}",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "Export",
tip: "Export {0} Data To Excel",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "Filter",
tip: "Filter",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "Save",
tip: "Save",
},
tbitem4: {
caption: "Save And New",
tip: "Save And New",
},
tbitem5: {
caption: "Save And Close",
tip: "Save And Close Window",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "Remove And Close",
tip: "Remove And Close Window",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "New",
tip: "New",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "Copy",
tip: "Copy {0}",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "Help",
tip: "Help",
},
},
};
\ No newline at end of file
export default {
fields: {
hrcertificateid: "证书信息标识",
hrcertificatename: "证书信息名称",
createdate: "建立时间",
updateman: "更新人",
createman: "建立人",
updatedate: "更新时间",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
gridview: {
caption: "证书信息",
title: "证书信息表格视图",
},
editview: {
caption: "证书信息",
title: "证书信息编辑视图",
},
},
main_form: {
details: {
group1: "证书信息基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "证书信息标识",
srfmajortext: "证书信息名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hrcertificatename: "证书信息名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hrcertificateid: "证书信息标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hrcertificatename: "证书信息名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "新建",
tip: "新建",
},
tbitem4: {
caption: "编辑",
tip: "编辑",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "删除",
tip: "删除",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "导出",
tip: "导出",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "过滤",
tip: "过滤",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "保存",
tip: "保存",
},
tbitem4: {
caption: "保存并新建",
tip: "保存并新建",
},
tbitem5: {
caption: "保存并关闭",
tip: "保存并关闭",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "删除并关闭",
tip: "删除并关闭",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "新建",
tip: "新建",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "拷贝",
tip: "拷贝",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "帮助",
tip: "帮助",
},
},
};
\ No newline at end of file
export default {
fields: {
createman: "建立人",
hrcontractid: "合同信息标识",
hrcontractname: "合同信息名称",
createdate: "建立时间",
updatedate: "更新时间",
updateman: "更新人",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
gridview: {
caption: "合同信息",
title: "合同信息表格视图",
},
editview: {
caption: "合同信息",
title: "合同信息编辑视图",
},
},
main_form: {
details: {
group1: "合同信息基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "合同信息标识",
srfmajortext: "合同信息名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hrcontractname: "合同信息名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hrcontractid: "合同信息标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hrcontractname: "合同信息名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "New",
tip: "New",
},
tbitem4: {
caption: "Edit",
tip: "Edit {0}",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "Remove",
tip: "Remove {0}",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "Export",
tip: "Export {0} Data To Excel",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "Filter",
tip: "Filter",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "Save",
tip: "Save",
},
tbitem4: {
caption: "Save And New",
tip: "Save And New",
},
tbitem5: {
caption: "Save And Close",
tip: "Save And Close Window",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "Remove And Close",
tip: "Remove And Close Window",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "New",
tip: "New",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "Copy",
tip: "Copy {0}",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "Help",
tip: "Help",
},
},
};
\ No newline at end of file
export default {
fields: {
createman: "建立人",
hrcontractid: "合同信息标识",
hrcontractname: "合同信息名称",
createdate: "建立时间",
updatedate: "更新时间",
updateman: "更新人",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
gridview: {
caption: "合同信息",
title: "合同信息表格视图",
},
editview: {
caption: "合同信息",
title: "合同信息编辑视图",
},
},
main_form: {
details: {
group1: "合同信息基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "合同信息标识",
srfmajortext: "合同信息名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hrcontractname: "合同信息名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hrcontractid: "合同信息标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hrcontractname: "合同信息名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "新建",
tip: "新建",
},
tbitem4: {
caption: "编辑",
tip: "编辑",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "删除",
tip: "删除",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "导出",
tip: "导出",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "过滤",
tip: "过滤",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "保存",
tip: "保存",
},
tbitem4: {
caption: "保存并新建",
tip: "保存并新建",
},
tbitem5: {
caption: "保存并关闭",
tip: "保存并关闭",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "删除并关闭",
tip: "删除并关闭",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "新建",
tip: "新建",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "拷贝",
tip: "拷贝",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "帮助",
tip: "帮助",
},
},
};
\ No newline at end of file
......@@ -62,6 +62,7 @@ export default {
hremployeename: "员工姓名",
hrorganizationname: "部门",
hrdutyname: "职务",
hrpostname: "职位",
begintime: "入职时间",
endtime: "离职时间",
},
......
......@@ -61,6 +61,7 @@ export default {
hremployeename: "员工姓名",
hrorganizationname: "部门",
hrdutyname: "职务",
hrpostname: "职位",
begintime: "入职时间",
endtime: "离职时间",
},
......
export default {
fields: {
hreducationid: "教育信息标识",
hreducationname: "教育信息名称",
createdate: "建立时间",
createman: "建立人",
updateman: "更新人",
updatedate: "更新时间",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
editview: {
caption: "教育信息",
title: "教育信息编辑视图",
},
gridview: {
caption: "教育信息",
title: "教育信息表格视图",
},
},
main_form: {
details: {
group1: "教育信息基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "教育信息标识",
srfmajortext: "教育信息名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hreducationname: "教育信息名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hreducationid: "教育信息标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hreducationname: "教育信息名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "New",
tip: "New",
},
tbitem4: {
caption: "Edit",
tip: "Edit {0}",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "Remove",
tip: "Remove {0}",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "Export",
tip: "Export {0} Data To Excel",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "Filter",
tip: "Filter",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "Save",
tip: "Save",
},
tbitem4: {
caption: "Save And New",
tip: "Save And New",
},
tbitem5: {
caption: "Save And Close",
tip: "Save And Close Window",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "Remove And Close",
tip: "Remove And Close Window",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "New",
tip: "New",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "Copy",
tip: "Copy {0}",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "Help",
tip: "Help",
},
},
};
\ No newline at end of file
export default {
fields: {
hreducationid: "教育信息标识",
hreducationname: "教育信息名称",
createdate: "建立时间",
createman: "建立人",
updateman: "更新人",
updatedate: "更新时间",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
editview: {
caption: "教育信息",
title: "教育信息编辑视图",
},
gridview: {
caption: "教育信息",
title: "教育信息表格视图",
},
},
main_form: {
details: {
group1: "教育信息基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "教育信息标识",
srfmajortext: "教育信息名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hreducationname: "教育信息名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hreducationid: "教育信息标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hreducationname: "教育信息名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "新建",
tip: "新建",
},
tbitem4: {
caption: "编辑",
tip: "编辑",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "删除",
tip: "删除",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "导出",
tip: "导出",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "过滤",
tip: "过滤",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "保存",
tip: "保存",
},
tbitem4: {
caption: "保存并新建",
tip: "保存并新建",
},
tbitem5: {
caption: "保存并关闭",
tip: "保存并关闭",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "删除并关闭",
tip: "删除并关闭",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "新建",
tip: "新建",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "拷贝",
tip: "拷贝",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "帮助",
tip: "帮助",
},
},
};
\ No newline at end of file
......@@ -324,20 +324,20 @@ export default {
},
tree_001_treeview: {
nodes: {
tr09: "考勤信息",
tr11: "证书信息",
tr10: "合同信息",
root: "默认根节点",
tr07: "档案信息",
tr04: "语言能力",
tr0: "员工信息",
tr05: "家庭情况",
tr01: "分配信息",
tr12: "奖励惩罚",
tr07: "档案信息",
tr11: "证书信息",
tr13: "培训记录",
tr01: "分配信息",
tr03: "教育信息",
tr05: "家庭情况",
tr0: "员工信息",
root: "默认根节点",
tr08: "绩效信息",
tr09: "职称信息",
tr10: "合同信息",
tr06: "工作履历",
tr04: "语言能力",
tr14: "学术成果",
},
uiactions: {
......
......@@ -323,20 +323,20 @@ export default {
},
tree_001_treeview: {
nodes: {
tr09: "考勤信息",
tr11: "证书信息",
tr10: "合同信息",
root: "默认根节点",
tr07: "档案信息",
tr04: "语言能力",
tr0: "员工信息",
tr05: "家庭情况",
tr01: "分配信息",
tr12: "奖励惩罚",
tr07: "档案信息",
tr11: "证书信息",
tr13: "培训记录",
tr01: "分配信息",
tr03: "教育信息",
tr05: "家庭情况",
tr0: "员工信息",
root: "默认根节点",
tr08: "绩效信息",
tr09: "职称信息",
tr10: "合同信息",
tr06: "工作履历",
tr04: "语言能力",
tr14: "学术成果",
},
uiactions: {
......
export default {
fields: {
createdate: "建立时间",
hrfamilyname: "家庭情况名称",
createman: "建立人",
updateman: "更新人",
hrfamilyid: "家庭情况标识",
updatedate: "更新时间",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
gridview: {
caption: "家庭情况",
title: "家庭情况表格视图",
},
editview: {
caption: "家庭情况",
title: "家庭情况编辑视图",
},
},
main_form: {
details: {
group1: "家庭情况基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "家庭情况标识",
srfmajortext: "家庭情况名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hrfamilyname: "家庭情况名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hrfamilyid: "家庭情况标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hrfamilyname: "家庭情况名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "New",
tip: "New",
},
tbitem4: {
caption: "Edit",
tip: "Edit {0}",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "Remove",
tip: "Remove {0}",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "Export",
tip: "Export {0} Data To Excel",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "Filter",
tip: "Filter",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "Save",
tip: "Save",
},
tbitem4: {
caption: "Save And New",
tip: "Save And New",
},
tbitem5: {
caption: "Save And Close",
tip: "Save And Close Window",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "Remove And Close",
tip: "Remove And Close Window",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "New",
tip: "New",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "Copy",
tip: "Copy {0}",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "Help",
tip: "Help",
},
},
};
\ No newline at end of file
export default {
fields: {
createdate: "建立时间",
hrfamilyname: "家庭情况名称",
createman: "建立人",
updateman: "更新人",
hrfamilyid: "家庭情况标识",
updatedate: "更新时间",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
gridview: {
caption: "家庭情况",
title: "家庭情况表格视图",
},
editview: {
caption: "家庭情况",
title: "家庭情况编辑视图",
},
},
main_form: {
details: {
group1: "家庭情况基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "家庭情况标识",
srfmajortext: "家庭情况名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hrfamilyname: "家庭情况名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hrfamilyid: "家庭情况标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hrfamilyname: "家庭情况名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "新建",
tip: "新建",
},
tbitem4: {
caption: "编辑",
tip: "编辑",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "删除",
tip: "删除",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "导出",
tip: "导出",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "过滤",
tip: "过滤",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "保存",
tip: "保存",
},
tbitem4: {
caption: "保存并新建",
tip: "保存并新建",
},
tbitem5: {
caption: "保存并关闭",
tip: "保存并关闭",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "删除并关闭",
tip: "删除并关闭",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "新建",
tip: "新建",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "拷贝",
tip: "拷贝",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "帮助",
tip: "帮助",
},
},
};
\ No newline at end of file
export default {
fields: {
updateman: "更新人",
hrlanguageabilityid: "语言能力标识",
createdate: "建立时间",
hrlanguageabilityname: "语言能力名称",
createman: "建立人",
updatedate: "更新时间",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
gridview: {
caption: "语言能力",
title: "语言能力表格视图",
},
editview: {
caption: "语言能力",
title: "语言能力编辑视图",
},
},
main_form: {
details: {
group1: "语言能力基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "语言能力标识",
srfmajortext: "语言能力名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hrlanguageabilityname: "语言能力名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hrlanguageabilityid: "语言能力标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hrlanguageabilityname: "语言能力名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "New",
tip: "New",
},
tbitem4: {
caption: "Edit",
tip: "Edit {0}",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "Remove",
tip: "Remove {0}",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "Export",
tip: "Export {0} Data To Excel",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "Filter",
tip: "Filter",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "Save",
tip: "Save",
},
tbitem4: {
caption: "Save And New",
tip: "Save And New",
},
tbitem5: {
caption: "Save And Close",
tip: "Save And Close Window",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "Remove And Close",
tip: "Remove And Close Window",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "New",
tip: "New",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "Copy",
tip: "Copy {0}",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "Help",
tip: "Help",
},
},
};
\ No newline at end of file
export default {
fields: {
updateman: "更新人",
hrlanguageabilityid: "语言能力标识",
createdate: "建立时间",
hrlanguageabilityname: "语言能力名称",
createman: "建立人",
updatedate: "更新时间",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
gridview: {
caption: "语言能力",
title: "语言能力表格视图",
},
editview: {
caption: "语言能力",
title: "语言能力编辑视图",
},
},
main_form: {
details: {
group1: "语言能力基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "语言能力标识",
srfmajortext: "语言能力名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hrlanguageabilityname: "语言能力名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hrlanguageabilityid: "语言能力标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hrlanguageabilityname: "语言能力名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "新建",
tip: "新建",
},
tbitem4: {
caption: "编辑",
tip: "编辑",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "删除",
tip: "删除",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "导出",
tip: "导出",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "过滤",
tip: "过滤",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "保存",
tip: "保存",
},
tbitem4: {
caption: "保存并新建",
tip: "保存并新建",
},
tbitem5: {
caption: "保存并关闭",
tip: "保存并关闭",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "删除并关闭",
tip: "删除并关闭",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "新建",
tip: "新建",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "拷贝",
tip: "拷贝",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "帮助",
tip: "帮助",
},
},
};
\ No newline at end of file
export default {
fields: {
hrpaperid: "论文信息标识",
createman: "建立人",
updatedate: "更新时间",
updateman: "更新人",
hrpapername: "论文信息名称",
createdate: "建立时间",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
};
\ No newline at end of file
export default {
fields: {
hrpaperid: "论文信息标识",
createman: "建立人",
updatedate: "更新时间",
updateman: "更新人",
hrpapername: "论文信息名称",
createdate: "建立时间",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
};
\ No newline at end of file
export default {
fields: {
hrpatentid: "专利信息标识",
createman: "建立人",
hrpatentname: "专利信息名称",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
};
\ No newline at end of file
export default {
fields: {
hrpatentid: "专利信息标识",
createman: "建立人",
hrpatentname: "专利信息名称",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
};
\ No newline at end of file
export default {
fields: {
hrresearchid: "科研成果标识",
createdate: "建立时间",
createman: "建立人",
updatedate: "更新时间",
hrresearchname: "科研成果名称",
updateman: "更新人",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
editview: {
caption: "科研成果",
title: "科研成果编辑视图",
},
gridview: {
caption: "科研成果",
title: "科研成果表格视图",
},
},
main_form: {
details: {
group1: "科研成果基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "科研成果标识",
srfmajortext: "科研成果名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hrresearchname: "科研成果名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hrresearchid: "科研成果标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hrresearchname: "科研成果名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "New",
tip: "New",
},
tbitem4: {
caption: "Edit",
tip: "Edit {0}",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "Remove",
tip: "Remove {0}",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "Export",
tip: "Export {0} Data To Excel",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "Filter",
tip: "Filter",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "Save",
tip: "Save",
},
tbitem4: {
caption: "Save And New",
tip: "Save And New",
},
tbitem5: {
caption: "Save And Close",
tip: "Save And Close Window",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "Remove And Close",
tip: "Remove And Close Window",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "New",
tip: "New",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "Copy",
tip: "Copy {0}",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "Help",
tip: "Help",
},
},
};
\ No newline at end of file
export default {
fields: {
hrresearchid: "科研成果标识",
createdate: "建立时间",
createman: "建立人",
updatedate: "更新时间",
hrresearchname: "科研成果名称",
updateman: "更新人",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
editview: {
caption: "科研成果",
title: "科研成果编辑视图",
},
gridview: {
caption: "科研成果",
title: "科研成果表格视图",
},
},
main_form: {
details: {
group1: "科研成果基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "科研成果标识",
srfmajortext: "科研成果名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hrresearchname: "科研成果名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hrresearchid: "科研成果标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hrresearchname: "科研成果名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "新建",
tip: "新建",
},
tbitem4: {
caption: "编辑",
tip: "编辑",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "删除",
tip: "删除",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "导出",
tip: "导出",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "过滤",
tip: "过滤",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "保存",
tip: "保存",
},
tbitem4: {
caption: "保存并新建",
tip: "保存并新建",
},
tbitem5: {
caption: "保存并关闭",
tip: "保存并关闭",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "删除并关闭",
tip: "删除并关闭",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "新建",
tip: "新建",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "拷贝",
tip: "拷贝",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "帮助",
tip: "帮助",
},
},
};
\ No newline at end of file
export default {
fields: {
hrrewardname: "奖励惩罚名称",
hrrewardid: "奖励惩罚标识",
createman: "建立人",
updatedate: "更新时间",
createdate: "建立时间",
updateman: "更新人",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
gridview: {
caption: "奖励惩罚",
title: "奖励惩罚表格视图",
},
editview: {
caption: "奖励惩罚",
title: "奖励惩罚编辑视图",
},
},
main_form: {
details: {
group1: "奖励惩罚基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "奖励惩罚标识",
srfmajortext: "奖励惩罚名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hrrewardname: "奖励惩罚名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hrrewardid: "奖励惩罚标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hrrewardname: "奖励惩罚名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "New",
tip: "New",
},
tbitem4: {
caption: "Edit",
tip: "Edit {0}",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "Remove",
tip: "Remove {0}",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "Export",
tip: "Export {0} Data To Excel",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "Filter",
tip: "Filter",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "Save",
tip: "Save",
},
tbitem4: {
caption: "Save And New",
tip: "Save And New",
},
tbitem5: {
caption: "Save And Close",
tip: "Save And Close Window",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "Remove And Close",
tip: "Remove And Close Window",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "New",
tip: "New",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "Copy",
tip: "Copy {0}",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "Help",
tip: "Help",
},
},
};
\ No newline at end of file
export default {
fields: {
hrrewardname: "奖励惩罚名称",
hrrewardid: "奖励惩罚标识",
createman: "建立人",
updatedate: "更新时间",
createdate: "建立时间",
updateman: "更新人",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
gridview: {
caption: "奖励惩罚",
title: "奖励惩罚表格视图",
},
editview: {
caption: "奖励惩罚",
title: "奖励惩罚编辑视图",
},
},
main_form: {
details: {
group1: "奖励惩罚基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "奖励惩罚标识",
srfmajortext: "奖励惩罚名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hrrewardname: "奖励惩罚名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hrrewardid: "奖励惩罚标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hrrewardname: "奖励惩罚名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "新建",
tip: "新建",
},
tbitem4: {
caption: "编辑",
tip: "编辑",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "删除",
tip: "删除",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "导出",
tip: "导出",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "过滤",
tip: "过滤",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "保存",
tip: "保存",
},
tbitem4: {
caption: "保存并新建",
tip: "保存并新建",
},
tbitem5: {
caption: "保存并关闭",
tip: "保存并关闭",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "删除并关闭",
tip: "删除并关闭",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "新建",
tip: "新建",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "拷贝",
tip: "拷贝",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "帮助",
tip: "帮助",
},
},
};
\ No newline at end of file
export default {
fields: {
hrtechnicaltitleid: "职称信息标识",
createman: "建立人",
updatedate: "更新时间",
updateman: "更新人",
createdate: "建立时间",
hrtechnicaltitlename: "职称信息名称",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
editview: {
caption: "职称信息",
title: "职称信息编辑视图",
},
gridview: {
caption: "职称信息",
title: "职称信息表格视图",
},
},
main_form: {
details: {
group1: "职称信息基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "职称信息标识",
srfmajortext: "职称信息名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hrtechnicaltitlename: "职称信息名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hrtechnicaltitleid: "职称信息标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hrtechnicaltitlename: "职称信息名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "New",
tip: "New",
},
tbitem4: {
caption: "Edit",
tip: "Edit {0}",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "Remove",
tip: "Remove {0}",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "Export",
tip: "Export {0} Data To Excel",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "Filter",
tip: "Filter",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "Save",
tip: "Save",
},
tbitem4: {
caption: "Save And New",
tip: "Save And New",
},
tbitem5: {
caption: "Save And Close",
tip: "Save And Close Window",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "Remove And Close",
tip: "Remove And Close Window",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "New",
tip: "New",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "Copy",
tip: "Copy {0}",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "Help",
tip: "Help",
},
},
};
\ No newline at end of file
export default {
fields: {
hrtechnicaltitleid: "职称信息标识",
createman: "建立人",
updatedate: "更新时间",
updateman: "更新人",
createdate: "建立时间",
hrtechnicaltitlename: "职称信息名称",
hremployeeid: "员工标识",
hremployeename: "员工姓名",
},
views: {
editview: {
caption: "职称信息",
title: "职称信息编辑视图",
},
gridview: {
caption: "职称信息",
title: "职称信息表格视图",
},
},
main_form: {
details: {
group1: "职称信息基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "职称信息标识",
srfmajortext: "职称信息名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
hrtechnicaltitlename: "职称信息名称",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
hrtechnicaltitleid: "职称信息标识",
},
uiactions: {
},
},
main_grid: {
columns: {
hrtechnicaltitlename: "职称信息名称",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "新建",
tip: "新建",
},
tbitem4: {
caption: "编辑",
tip: "编辑",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "删除",
tip: "删除",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "导出",
tip: "导出",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "过滤",
tip: "过滤",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "保存",
tip: "保存",
},
tbitem4: {
caption: "保存并新建",
tip: "保存并新建",
},
tbitem5: {
caption: "保存并关闭",
tip: "保存并关闭",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "删除并关闭",
tip: "删除并关闭",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "新建",
tip: "新建",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "拷贝",
tip: "拷贝",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem22: {
caption: "帮助",
tip: "帮助",
},
},
};
\ No newline at end of file
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册