export class Equirment {
    eqid: number;
    eqName: string;
    eqdesc: string;
    eqtype: string;
    eqpic: string;
    constructor(init?: Equirment){
        Object.assign(this, init);
        this.eqid = 0;
        this.eqName = '';
        this.eqdesc = '';
        this.eqtype = '';
        this.eqpic = '';
    }
}

export interface SearchEquirmentModel {
    sdate: string;
    edate: string;
    stime: string;
    etime: string;
}

export class SearchEquirmentModel {
    constructor(init?: SearchEquirmentModel) {
        Object.assign(this, init);
        this.sdate = '',
        this.edate = '',
        this.stime = '',
        this.etime = '';
    }
}