import EntityBase from "./EntityBase"; import MBusiness from "./MBusiness"; export default class MEmployeeLevel extends EntityBase { BindBusiness? : MBusiness; LevelName? : string; EmployeeType? : string; IsEnabled? : boolean; LevelOrder : string; SceneTypes? : Array; CreateTime? : Date }