/**
 * 專案名稱： @wistroni40/bnft
 * 部門代號： ML8100
 * 檔案說明： 廠別資料模型
 * @CREATE Fri Jan 22 2021 上午8:29:12
 * @author Steve Y Lin
 * @contact Steve_Y_Lin@wistron.com #1342
 * -----------------------------------------------------------------------------
 * @NOTE
 */
import { BenefitActivedSystemModel, BenefitPlantModel } from '../custom';
/**
 * 廠別資料模型
 */
export declare class BenefitPlantEntity implements BenefitPlantModel {
    /**
     * 流水號(主鍵)
     */
    id: string;
    /**
     * 公司別
     */
    company: string;
    /**
     * Site
     */
    site: string;
    /**
     * 廠別
     */
    plant: string;
    /**
     * 廠別代碼
     */
    plantcode: string;
    /**
     * 激活系統關聯
     */
    benefitActiveSystems?: BenefitActivedSystemModel[];
    /**
     * @param data 效益激活系統資料
     */
    constructor(data?: Partial<BenefitPlantModel>);
}
