You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
451B

  1. class ConstCommon {
  2. static int kExpiredTime = 12 * 60 * 60 * 1000; //24h
  3. static int kFileSize = 1000000; //1M = 1000.000 bytes
  4. static const String baseUrl = "http://tpf.aztrace.vn";
  5. static const String supplyTypeSeed = "GIONG";
  6. static const String supplyTypeDung = "PHANBON";
  7. static const String supplyTypeSubStrate = "GIATHE";
  8. static const String supplyTypeProtectPlant = "THUOCBVTV";
  9. }
  10. enum CRUDStatus { unknown, add, edit, delete }