1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| import com.dcits.pojo.SuperEntity; import com.gitee.sunchenbin.mybatis.actable.annotation.Column; import com.gitee.sunchenbin.mybatis.actable.annotation.Table; import lombok.Data;
@Data @Table(name = "blockchain_app") public class App extends SuperEntity {
@Column(name = "appId",comment = "appId") private String appId;
@Column(name = "app_secret",comment = "app密钥") private String appSecret;
@Column(name = "private_key_store_type",comment = "密钥存储方式") private String privateKeyStoreType;
@Column(name = "status",comment = "状态") private String status;
}
|