123456789101112131415161718 |
- package com.rongwei.bsentity.vo;
- import com.rongwei.bsentity.domain.QhseVisitorManagementDo;
- import lombok.Data;
- @Data
- public class QhseVisitorManagementVo extends QhseVisitorManagementDo {
- /**
- * 审批状态名称
- */
- private String APPROVALSTATUSNAME;
- /**
- * 来访事由名称
- */
- private String REASONSFORTHEVISITNAME;
- }
|