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.
		
		
		
		
			
				
					
					
						
							50 lines
						
					
					
						
							1.2 KiB
						
					
					
				
			
		
		
	
	
							50 lines
						
					
					
						
							1.2 KiB
						
					
					
				| package com.ynxbd.common.bean;
 | |
| 
 | |
| import lombok.Getter;
 | |
| import lombok.NoArgsConstructor;
 | |
| import lombok.Setter;
 | |
| import lombok.ToString;
 | |
| 
 | |
| import java.math.BigDecimal;
 | |
| import java.sql.Time;
 | |
| import java.util.Date;
 | |
| 
 | |
| @Getter
 | |
| @Setter
 | |
| @ToString
 | |
| @NoArgsConstructor
 | |
| public class ConfigSelfHelp {
 | |
|     private Integer id;
 | |
|     private String code;
 | |
|     private Integer groupType;
 | |
| 
 | |
|     // HIS申请单名称
 | |
|     private String title;
 | |
|     // 微信显示的标题
 | |
|     private String showTitle;
 | |
|     // HIS申请单费用
 | |
|     private BigDecimal fee;
 | |
|     // 描述
 | |
|     private String description;
 | |
|     private String confirmBtnText;
 | |
|     private String enterDialogText;
 | |
|     private String enterDialogTitle;
 | |
|     // 弹框状态:0:进入页面提示,仅提示一次;1:切换时也需进行提示。
 | |
|     private Integer enterDialogState;
 | |
| 
 | |
|     private Boolean isDisabled;
 | |
|     private Boolean isEnterDialog;
 | |
|     //
 | |
|     private String color;
 | |
|     // 每日检测数量
 | |
|     private Integer everyDayNum;
 | |
|     private String updateUser;
 | |
|     private Date updateTime;
 | |
| 
 | |
|     private Time begTime;
 | |
|     private Time endTime;
 | |
| 
 | |
|     private Time begTime2;
 | |
|     private Time endTime2;
 | |
|     private Integer seq;
 | |
| } |