package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
import lombok.ToString;
|
import org.apache.ibatis.type.Alias;
|
|
import java.util.Date;
|
|
@Data
|
@ToString
|
@Alias("Software")
|
@TableName(schema = "db_battery_gwm",value = "tb_software")
|
public class Software {
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
private String snCode;
|
|
private String serialNumber;
|
|
private String materialCode;
|
|
private String version;
|
|
private String description;
|
|
private String fileName;
|
|
private String fileUrl;
|
|
private Integer uploadUserId;
|
|
private String uploadUserName;
|
|
private Date uploadTime;
|
|
private Date createTime;
|
|
private Integer mailSt;
|
private Date sendTime;
|
private Date applyTime;
|
|
}
|