Skip to content
  • This project
    • Loading...
  • Sign in

夏齐 / hzbdcsyn

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • hzbdcsyn
  • ..
  • entity
  • DocumentParam.java
  • 夏齐's avatar
    首次提交 · e2ba1ee0
    e2ba1ee0 Browse Files
    夏齐 committed 2022-07-29 09:21:32 +0800
DocumentParam.java 427 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
package com.pashanhoo.qys.entity;

import lombok.Data;
import lombok.EqualsAndHashCode;

import java.io.Serializable;
@Data
@EqualsAndHashCode(callSuper = false)
public class DocumentParam implements Serializable {
    private static final long serialVersionUID = 1L;

    /**
     * 是
     * 模板参数名称
     */
    private String name;

    /**
     * 是
     * 模板参数值
     */
    private String value;

}