123456789101112131415161718192021222324252627282930313233343536 |
- package com.rongwei.bsentity.vo;
- import com.rongwei.bsentity.domain.QhsePointsUnitDetailsDo;
- import com.rongwei.bsentity.domain.QhsePointsUnitRecordDo;
- import lombok.Data;
- import lombok.experimental.Accessors;
- @Data
- @Accessors(chain = true)
- public class QhsePointsUnitDetailsVo extends QhsePointsUnitDetailsDo {
- /**
- * 单位名称
- */
- private String unitname;
- /**
- * 所属部门
- */
- private String departmentname;
- /**
- * 唯一key
- */
- private String uniquevalue;
- /**
- * 发生时间 年月日
- */
- private String happentimestr;
- }
|