futian.liu
2023-11-24 7261ee93908d61a2c714645f19501aee9a7aba7b
consum-model-pojo/src/main/java/com/consum/model/po/LWhFormTransfer.java
@@ -7,10 +7,12 @@
/**
 * 表名:L_WH_FORM_TRANSFER *
 *
 * @author genrator
 */
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.ANY)
public class LWhFormTransfer extends BasePo<LWhFormTransfer> {
    // 序列化版本号
    private static final long serialVersionUID = 1L;
@@ -139,6 +141,10 @@
    private String procureDoc = null;
    @JsonIgnore
    protected boolean isset_procureDoc = false;
    private Long tel = null;
    @JsonIgnore
    protected boolean isset_tel = false;
    /**
     * 默认构造函数
@@ -595,6 +601,20 @@
        return this.procureDoc == null || this.procureDoc.length() == 0;
    }
    public Long getTel() {
        return tel;
    }
    public void setTel(Long tel) {
        this.tel = tel;
        this.isset_tel = true;
    }
    @JsonIgnore
    public boolean isEmptyTel() {
        return this.tel == null;
    }
    /**
     * 重写 toString() 方法
     */
@@ -739,6 +759,9 @@
        if (this.isset_procureDoc) {
            l_wh_form_transfer.setProcureDoc(this.getProcureDoc());
        }
        if (this.isset_tel) {
            l_wh_form_transfer.setTel(this.getTel());
        }
        return l_wh_form_transfer;
    }
}