change - 箱壳设备看板loss统计
parent
30f85d16da
commit
a9571ede97
@ -0,0 +1,27 @@
|
|||||||
|
package com.productionboard.entity.TankShellDevice;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author WenJY
|
||||||
|
* @date 2022年06月10日 11:23
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper = false)
|
||||||
|
@Accessors(chain = true)
|
||||||
|
@TableName("SCADA_UK_DEVICEINFO_4")
|
||||||
|
public class TankShellLossStatistics implements Serializable {
|
||||||
|
|
||||||
|
@TableField("NAME")
|
||||||
|
public String xValue;
|
||||||
|
|
||||||
|
@TableField("VALUE")
|
||||||
|
public String yValue;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
package com.productionboard.mapper;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
import com.productionboard.entity.TankShellDevice.TankShellLossStatistics;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author WenJY
|
||||||
|
* @date 2022年06月10日 11:25
|
||||||
|
*/
|
||||||
|
@Mapper
|
||||||
|
public interface TankShellLossStatisticsMapper extends BaseMapper<TankShellLossStatistics> {
|
||||||
|
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue