| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * entity:BriefReport
- *
- * @author xuw
- * @date 2019-3-11
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BriefReport extends BaseBean implements Serializable {
- private String addCode;
- private String adCode;
- private String adName;
- private String code;
- private String pnm;
- private int num;
- @ApiModelProperty("不同督查对象分类不同")
- private String type;
- public BriefReport() {
- }
- @Override
- public String toString() {
- return "BriefReport [" + "code=" + code + ", pnm=" + pnm + ", num=" + num + "]";
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getAdName() {
- return adName;
- }
- public void setAdName(String adName) {
- this.adName = adName;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getPnm() {
- return pnm;
- }
- public void setPnm(String pnm) {
- this.pnm = pnm;
- }
- public int getNum() {
- return num;
- }
- public void setNum(int num) {
- this.num = num;
- }
- public String getAddCode() {
- return adCode + code;
- }
- public void setAddCode(String addCode) {
- this.addCode = adCode + code;
- }
- }
|