ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package jnpf.base.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
 
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
/**
 * 审批常用语 Entity
 *
 * @author JNPF开发平台组 YanYu
 * @version v3.4.6
 * @copyrignt 引迈信息技术有限公司
 * @date 2023-01-06
 */
@TableName("base_common_words")
@Schema(description = "CommonWords对象", name = "审批常用语")
@Data
public class CommonWordsEntity extends SuperExtendEntity.SuperExtendEnabledEntity<String> {
 
    /**
     * 应用id
     */
    @TableField("f_system_ids")
    private String systemIds;
 
    /**
     * 常用语
     */
    @TableField("f_common_words_text")
    private String commonWordsText;
 
    /**
     * 常用语类型(0:系统,1:个人)
     */
    @TableField("f_common_words_type")
    private Integer commonWordsType;
 
    /**
     * 使用次数
     */
    @TableField("f_uses_num")
    private Long usesNum;
 
}