d5eb08579a42309fd0acc57a4fbcd5c630c70fcb.svn-base 523 B

1234567891011121314151617181920212223242526272829303132333435
  1. package org.jeecg.boot.starter.job.prop;
  2. import lombok.Data;
  3. import org.springframework.boot.context.properties.ConfigurationProperties;
  4. @Data
  5. @ConfigurationProperties(prefix = "jeecg.xxljob")
  6. public class XxlJobProperties {
  7. private String adminAddresses;
  8. private String appname;
  9. private String ip;
  10. private int port;
  11. private String accessToken;
  12. private String logPath;
  13. private int logRetentionDays;
  14. /**
  15. * 是否开启xxljob
  16. */
  17. private Boolean enable = true;
  18. }