|
- class ConstCommon {
- static int kExpiredTime = 12 * 60 * 60 * 1000; //24h
- static int kFileSize = 1000000; //1M = 1000.000 bytes
- static const String baseUrl = "http://tpf.aztrace.vn";
- static const String baseImageUrl = "http://s3.tpf.aztrace.vn/upload/";
-
- static const String apiDetailNursery = "api/activity-nursery";
-
- static const String paramsActionNursery = "activityNursery";
- static const String apiUpdateNursery = "api/updateNursery";
- static const String apiAddNursery = "api/createNursery";
-
- static const String supplyTypeSeed = "GIONG";
- static const String supplyTypeDung = "PHANBON";
- static const String supplyTypeSubStrate = "GIATHE";
- static const String supplyTypeProtectPlant = "THUOCBVTV";
- }
-
- enum CRUDStatus { unknown, add, edit, delete }
|