You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.glxp.api.entity.inv ;
import com.baomidou.mybatisplus.annotation.IdType ;
import com.baomidou.mybatisplus.annotation.TableField ;
import com.baomidou.mybatisplus.annotation.TableId ;
import com.baomidou.mybatisplus.annotation.TableName ;
import java.io.Serializable ;
import java.util.Date ;
import lombok.Data ;
@Data
@TableName ( value = "device_project_set" )
public class DeviceProjectSet implements Serializable {
@TableId ( value = "id" , type = IdType . INPUT )
private Integer id ;
/**
* 项目编号
*/
@TableField ( value = "code" )
private String code ;
/**
* 项目内容
*/
@TableField ( value = "content" )
private String content ;
/**
* 项目类型: 1: 巡检; 2: 养护
*/
@TableField ( value = "`type`" )
private Integer type ;
/**
* 备注
*/
@TableField ( value = "remak" )
private String remak ;
/**
* 更新时间
*/
@TableField ( value = "udpateTime" )
private Date udpateTime ;
/**
* 更新人
*/
@TableField ( value = "updateUser" )
private String updateUser ;
/**
* 创建人
*/
@TableField ( value = "`createUser`" )
private String createUser ;
/**
* 创建时间
*/
@TableField ( value = "createTime" )
private Date createTime ;
private static final long serialVersionUID = 1L ;
}