Commit cec5bd9f authored by yanzg's avatar yanzg

不记录系统日志

parent df82d6de
package com.yanzuoguang.dao.impl;
import com.yanzuoguang.util.helper.StringHelper;
import java.util.ArrayList;
import java.util.List;
/**
* 自定义参数
*
* @author 颜佐光
*/
public class SqlCodeParameter {
/**
* 纬度
*/
private String latitudeCode = StringHelper.EMPTY;
/**
* 纬度类型
*/
private List<Object> latitude = new ArrayList<>();
public String getLatitudeCode() {
return latitudeCode;
}
public void setLatitudeCode(String latitudeCode) {
this.latitudeCode = latitudeCode;
}
public List<Object> getLatitude() {
return latitude;
}
public void setLatitude(List<Object> latitude) {
this.latitude = latitude;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment