mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-05-05 05:07:46 +08:00
🎨 修复错误的字段
This commit is contained in:
parent
25ac89c3bf
commit
15b2cefaf8
@ -11,7 +11,6 @@ import java.io.Serializable;
|
||||
*/
|
||||
@Data
|
||||
public class TemplateTitle implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -3229779834737051398L;
|
||||
|
||||
private String text;
|
||||
|
@ -3,6 +3,7 @@ package me.chanjar.weixin.cp.bean.oa.templatedata;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* The type Template vacation item.
|
||||
@ -11,10 +12,9 @@ import java.io.Serializable;
|
||||
*/
|
||||
@Data
|
||||
public class TemplateVacationItem implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 4510594801023791319L;
|
||||
|
||||
private Integer id;
|
||||
|
||||
private TemplateTitle name;
|
||||
private List<TemplateTitle> name;
|
||||
}
|
||||
|
@ -13,7 +13,6 @@ import java.io.Serializable;
|
||||
*/
|
||||
@Data
|
||||
public class TemplateAttendance implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 5800412600894589065L;
|
||||
|
||||
@SerializedName("date_range")
|
||||
|
@ -11,7 +11,6 @@ import java.io.Serializable;
|
||||
*/
|
||||
@Data
|
||||
public class TemplateContact implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -7840088884653172851L;
|
||||
/**
|
||||
* 选择方式:single-单选;multi-多选
|
||||
|
@ -11,7 +11,6 @@ import java.io.Serializable;
|
||||
*/
|
||||
@Data
|
||||
public class TemplateDate implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1300634733160349684L;
|
||||
/**
|
||||
* day-日期;hour-日期+时间
|
||||
|
@ -13,7 +13,6 @@ import java.util.List;
|
||||
*/
|
||||
@Data
|
||||
public class TemplateSelector implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 4995408101489736881L;
|
||||
/**
|
||||
* single-单选;multi-多选
|
||||
|
@ -13,8 +13,6 @@ import java.util.List;
|
||||
*/
|
||||
@Data
|
||||
public class TemplateTable implements Serializable {
|
||||
|
||||
|
||||
private static final long serialVersionUID = -8181588935694605858L;
|
||||
|
||||
private List<TemplateControls> children;
|
||||
|
@ -13,6 +13,7 @@ import java.util.List;
|
||||
*/
|
||||
@Data
|
||||
public class TemplateVacation implements Serializable {
|
||||
private static final long serialVersionUID = 3442297114957906890L;
|
||||
|
||||
private List<TemplateVacationItem> item;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user