zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
commit | author | age
a18bfa 1
Z 2
3 package com.codingapi.tm.model;
4
5 /**
6  * create by lorne on 2017/11/22
7  */
8 public class ModelName {
9
10     private String name;
11     private int count;
12
13     public String getName() {
14         return name;
15     }
16
17     public void setName(String name) {
18         this.name = name;
19     }
20
21     public int getCount() {
22         return count;
23     }
24
25     public void setCount(int count) {
26         this.count = count;
27     }
28 }