Files
AI-Check-Test/jnpf-ftb/jnpf-ftb-entity/src/main/java/jnpf/model/ClockResultVO.java
dongzi 3cba3bb74e
Some checks failed
API接口参数变更检测 / api-param-check (push) Has been cancelled
commit
2026-06-05 16:18:40 +08:00

18 lines
268 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package jnpf.model;
import lombok.Builder;
import lombok.Data;
@Data
@Builder
public class ClockResultVO {
/**
* 打卡返回类型1打卡成功 2已打卡
*/
private Integer type;
/**
* 格言
*/
private String aphorism;
}