@com.blade.jdbc.annotation.Table(t_attach)

Here are the examples of the java api @com.blade.jdbc.annotation.Table(t_attach) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : Attach.java
with MIT License
from tfssweb

/**
 * 附件
 * <p>
 * Created by biezhi on 2017/2/23.
 */
@Data
@Table("t_attach")
public clreplaced Attach extends ActiveRecord {

    private Integer id;

    private String fname;

    private String ftype;

    private String fkey;

    private Integer author_id;

    private Integer created;
}