34 lines
689 B
Java
34 lines
689 B
Java
package com.tiesheng.demo.pojos;
|
|
|
|
import com.tiesheng.annotation.desensitize.Desensitize;
|
|
import com.tiesheng.poi.pojos.PoiWriteBase;
|
|
|
|
|
|
public class TestParent implements PoiWriteBase {
|
|
|
|
private String id;
|
|
|
|
@Desensitize()
|
|
private String test;
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// setter、getter
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getTest() {
|
|
return test;
|
|
}
|
|
|
|
public void setTest(String test) {
|
|
this.test = test;
|
|
}
|
|
}
|