package cn.com.yskj.zfdm.entity.dict; | |||||
public enum ZfdTaskDate { | |||||
EVERYDAY("每日"){}, | |||||
WEEKLY("每周"){}, | |||||
MONTHLY("每月"){},; | |||||
private final String value; | |||||
private ZfdTaskDate(String value) | |||||
{ | |||||
this.value = value; | |||||
} | |||||
public String getValue() | |||||
{ | |||||
return value; | |||||
} | |||||
} |
/** | /** | ||||
* ZfdRecurringPatrolPlanModel | * ZfdRecurringPatrolPlanModel | ||||
* | * | ||||
* @author yjl | |||||
* @author lwl | |||||
* @version createtime: 2021年4月6日 下午3:52:46 | * @version createtime: 2021年4月6日 下午3:52:46 | ||||
*/ | */ | ||||
public class ZfdRecurringPatrolPlanModel extends BaseModel { | public class ZfdRecurringPatrolPlanModel extends BaseModel { |