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.
51 lines
1.2 KiB
Java
51 lines
1.2 KiB
Java
package com.glxp.api.entity.stat;
|
|
|
|
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.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
@Data
|
|
@Builder
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
@TableName(value = "stat_warn_message")
|
|
public class StatWarnMessageEntity implements Serializable {
|
|
@TableId(value = "id", type = IdType.INPUT)
|
|
private Integer id;
|
|
|
|
@TableField(value = "companyName")
|
|
private String companyName;
|
|
|
|
@TableField(value = "companyId")
|
|
private String companyId;
|
|
|
|
@TableField(value = "bussinessStatus")
|
|
private String bussinessStatus;
|
|
|
|
@TableField(value = "productName")
|
|
private String productName;
|
|
|
|
@TableField(value = "ggxh")
|
|
private String ggxh;
|
|
|
|
@TableField(value = "updateTime")
|
|
private Date updateTime;
|
|
|
|
@TableField(value = "warnMsg")
|
|
private String warnMsg;
|
|
@TableField(value = "zczbhhzbapzbh")
|
|
private String zczbhhzbapzbh;
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
}
|