You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
j2ee/src/main/java/com/entity/view/SystemintroView.java

37 lines
901 B

package com.entity.view;
import com.entity.SystemintroEntity;
import com.baomidou.mybatisplus.annotations.TableName;
import org.apache.commons.beanutils.BeanUtils;
import java.lang.reflect.InvocationTargetException;
import java.io.Serializable;
/**
* 关于我们
* 后端返回视图实体辅助类
* (通常后端关联的表或者自定义的字段需要返回使用)
* @author
* @email
* @date 2023-02-21 09:46:06
*/
@TableName("systemintro")
public class SystemintroView extends SystemintroEntity implements Serializable {
private static final long serialVersionUID = 1L;
public SystemintroView(){
}
public SystemintroView(SystemintroEntity systemintroEntity){
try {
BeanUtils.copyProperties(this, systemintroEntity);
} catch (IllegalAccessException | InvocationTargetException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}