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.
		
		
		
		
			
				
					32 lines
				
				647 B
			
		
		
			
		
	
	
					32 lines
				
				647 B
			| 
											3 years ago
										 | /*
 | ||
|  |  * *
 | ||
|  |  *  * @Project 微信公众号
 | ||
|  |  *  * @Author 张剑峰
 | ||
|  |  *  * @Date 2021/1/12 下午10:22
 | ||
|  |  *  * @Description
 | ||
|  |  *  * @Version v1.0.0
 | ||
|  |  *  * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
 | ||
|  |  *
 | ||
|  |  */
 | ||
|  | 
 | ||
|  | package com.ynxbd.common.bean;
 | ||
|  | 
 | ||
|  | import lombok.Getter;
 | ||
|  | import lombok.NoArgsConstructor;
 | ||
|  | import lombok.Setter;
 | ||
|  | import lombok.ToString;
 | ||
|  | 
 | ||
|  | import java.io.Serializable;
 | ||
|  | 
 | ||
|  | @Setter
 | ||
|  | @Getter
 | ||
|  | @ToString
 | ||
|  | @NoArgsConstructor
 | ||
|  | public class Accounts implements Serializable {
 | ||
|  |     private String no;
 | ||
|  |     private String date;
 | ||
|  |     private int count;
 | ||
|  |     private double sumMoney;
 | ||
|  |     private String description;
 | ||
|  | }
 |