package com.ruoyi.alarm.config.domain; 
 | 
  
 | 
import com.ruoyi.common.annotation.Excel; 
 | 
import com.ruoyi.common.core.domain.BaseEntity; 
 | 
import org.apache.commons.lang3.builder.ToStringBuilder; 
 | 
import org.apache.commons.lang3.builder.ToStringStyle; 
 | 
  
 | 
/** 
 | 
 * 报警类型用户关联对象 ard_alarm_type_user 
 | 
 *  
 | 
 * @author ard 
 | 
 * @date 2023-06-21 
 | 
 */ 
 | 
  
 | 
public class ArdAlarmTypeConfig extends BaseEntity 
 | 
{ 
 | 
    private static final long serialVersionUID = 1L; 
 | 
  
 | 
    /** 用户ID */ 
 | 
    @Excel(name = "用户ID") 
 | 
    private String userId; 
 | 
  
 | 
    /** 报警代码 */ 
 | 
    private String command; 
 | 
  
 | 
    /** 报警类型 */ 
 | 
    @Excel(name = "报警类型") 
 | 
    private String alarmType; 
 | 
  
 | 
  
 | 
  
 | 
    public void setCommand(String command) 
 | 
    { 
 | 
        this.command = command; 
 | 
    } 
 | 
  
 | 
    public String getCommand() 
 | 
    { 
 | 
        return command; 
 | 
    } 
 | 
    public void setAlarmType(String alarmType)  
 | 
    { 
 | 
        this.alarmType = alarmType; 
 | 
    } 
 | 
  
 | 
    public String getAlarmType()  
 | 
    { 
 | 
        return alarmType; 
 | 
    } 
 | 
    public void setUserId(String userId)  
 | 
    { 
 | 
        this.userId = userId; 
 | 
    } 
 | 
  
 | 
    public String getUserId()  
 | 
    { 
 | 
        return userId; 
 | 
    } 
 | 
  
 | 
  
 | 
} 
 |