소스정리
This commit is contained in:
@@ -0,0 +1,18 @@
|
|||||||
|
package net.jwsi.jcms_vpp.station;
|
||||||
|
|
||||||
|
import jakarta.persistence.Entity;
|
||||||
|
import lombok.Getter;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
import lombok.Setter;
|
||||||
|
import net.jwsi.jcms.base.BaseStEntity;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
@Setter
|
||||||
|
@NoArgsConstructor
|
||||||
|
@Entity(name="vpp_station")
|
||||||
|
public class Station extends BaseStEntity {
|
||||||
|
private String providerId;
|
||||||
|
private String stationId;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
package net.jwsi.jcms_vpp.station;
|
||||||
|
|
||||||
|
import net.jwsi.jcms.base.BaseController;
|
||||||
|
import net.jwsi.jcms.base.BaseEntity;
|
||||||
|
import net.jwsi.jcms.base.BaseService;
|
||||||
|
import net.jwsi.jcms.exception.JsonDataException;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class StationController extends BaseController {
|
||||||
|
public StationController(BaseService service) {
|
||||||
|
super(service);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void chkSelectList(List list) throws JsonDataException {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void chkSelect(BaseEntity data) throws JsonDataException {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
package net.jwsi.jcms_vpp.station;
|
||||||
|
|
||||||
|
import net.jwsi.jcms.base.BaseRecStRepository;
|
||||||
|
|
||||||
|
public interface StationRepository extends BaseRecStRepository {
|
||||||
|
}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
package net.jwsi.jcms_vpp.station;
|
||||||
|
|
||||||
|
public class StationService {
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user