🎨 【企业微信】OA审批模板增加位置的范围配置

This commit is contained in:
RickSun 2024-10-26 06:20:13 +00:00 committed by Binary Wang
parent b87da90b69
commit 94b375f5d8
2 changed files with 20 additions and 0 deletions

View File

@ -32,6 +32,8 @@ public class TemplateConfig implements Serializable {
private TemplateAttendance attendance;
private TemplateLocation location;
@SerializedName("vacation_list")
private TemplateVacation vacationList;

View File

@ -0,0 +1,18 @@
package me.chanjar.weixin.cp.bean.oa.templatedata;
import lombok.Data;
/**
* The type Template location.
*
* @author RickSun sunalee@dingtalk.com
*/
@Data
public class TemplateLocation {
/**
* 模板位置的范围
*/
private Integer distance;
}