|
|
|
@ -32,7 +32,7 @@ public class DataEaseModel {
|
|
|
|
|
* @return 数据集列表
|
|
|
|
|
*/
|
|
|
|
|
public List<Record> getDataSetByIdentityId(int identity_id, String area_name) {
|
|
|
|
|
String sql = "select t1.* from t_dp_dataset as t1 where t1.owner_id=? order by t1.dataease_id where t1.b_use=1";
|
|
|
|
|
String sql = "select t1.* from t_dp_dataset as t1 where t1.owner_id=? order by t1.dataease_id and t1.b_use=1";
|
|
|
|
|
List<Record> list = Db.find(sql, identity_id);
|
|
|
|
|
if (!StrKit.isBlank(area_name)) {
|
|
|
|
|
for (Record record : list) {
|
|
|
|
|