| | |
| | | package com.ycl.platform.domain.vo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.ycl.platform.base.AbsVo; |
| | | import com.ycl.platform.domain.entity.YwPeople; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.springframework.lang.NonNull; |
| | | import org.springframework.beans.BeanUtils; |
| | | import lombok.Data; |
| | |
| | | /** 联系电话 */ |
| | | private String phone; |
| | | |
| | | /** 备注 */ |
| | | private String remark; |
| | | |
| | | public static YwPeopleVO getVoByEntity(@NonNull YwPeople entity, YwPeopleVO vo) { |
| | | if(vo == null) { |
| | | vo = new YwPeopleVO(); |