fix:
update:修改包名
This commit is contained in:
2025-11-28 20:50:52 +08:00
parent a34a680689
commit 7e16ba8813
298 changed files with 1063 additions and 1078 deletions

View File

@@ -0,0 +1,21 @@
package com.xwad.os.bean;
import java.io.Serializable;
public class AlarmItem implements Serializable {
private static final long serialVersionUID = -2760428066543837757L;
public String mTitle;
public String mTime;
public String mRepeatType;
public String mRepeatCode;
public boolean mActive;
public AlarmItem(String time, String repeatNormal, String repeatDefine, boolean active) {
// this.mTitle = title;
this.mTime = time;
this.mRepeatType = repeatNormal;
this.mRepeatCode = repeatDefine;
this.mActive = active;
}
}