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.
		
		
		
		
			
				
					28 lines
				
				548 B
			
		
		
			
		
	
	
					28 lines
				
				548 B
			| 
											3 years ago
										 | /*
 | ||
|  |  * *
 | ||
|  |  *  * @Project 微信公众号
 | ||
|  |  *  * @Author 张剑峰
 | ||
|  |  *  * @Date 2020/12/4 下午12:05
 | ||
|  |  *  * @Description
 | ||
|  |  *  * @Version v1.0.0
 | ||
|  |  *  * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
 | ||
|  |  *
 | ||
|  |  */
 | ||
|  | 
 | ||
|  | package com.ynxbd.common.bean.lis;
 | ||
|  | 
 | ||
|  | import lombok.Getter;
 | ||
|  | import lombok.NoArgsConstructor;
 | ||
|  | import lombok.Setter;
 | ||
|  | import lombok.ToString;
 | ||
|  | 
 | ||
|  | import java.io.Serializable;
 | ||
|  | 
 | ||
|  | @Setter
 | ||
|  | @Getter
 | ||
|  | @ToString
 | ||
|  | @NoArgsConstructor
 | ||
|  | public class XBDLisComment implements Serializable {
 | ||
|  |     private String comment;
 | ||
|  | }
 |