All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.chanjar.weixin.cp.bean.oa.templatedata.TemplateProperty Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package me.chanjar.weixin.cp.bean.oa.templatedata;

import com.google.gson.annotations.SerializedName;
import lombok.Data;

import java.io.Serializable;
import java.util.List;

/**
 * The type Template property.
 *
 * @author gyv12345 @163.com
 */
@Data
public class TemplateProperty implements Serializable {

  private static final long serialVersionUID = -3429251158540167453L;

  private String control;

  private String id;

  private List title;

  /**
   * 控件说明,向申请者展示的控件填写说明,若配置了多语言则会包含中英文的控件说明,默认为zh_CN中文
   */
  private List placeholder;

  /**
   * 是否必填:1-必填;0-非必填
   */
  private Integer require;
  /**
   * 是否参与打印:1-不参与打印;0-参与打印
   */
  @SerializedName("un_print")
  private Integer unPrint;

  private TemplateConfig config;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy