Loki
3 years ago
6 changed files with 133 additions and 0 deletions
@ -0,0 +1,70 @@
|
||||
package dubbo.dto; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import lombok.experimental.Accessors; |
||||
import org.springframework.format.annotation.DateTimeFormat; |
||||
import java.io.Serializable; |
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* @Description: 物料 |
||||
* @Author: jeecg-boot |
||||
* @Date: 2020-05-29 |
||||
* @Version: V1.0 |
||||
*/ |
||||
@Data |
||||
@TableName("bas_material") |
||||
@Accessors(chain = true) |
||||
@EqualsAndHashCode(callSuper = false) |
||||
public class BasMaterial implements Serializable { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/**ID*/ |
||||
@TableId(type = IdType.ASSIGN_ID) |
||||
private String id; |
||||
/**编码*/ |
||||
private String code; |
||||
/**名称*/ |
||||
private String name; |
||||
/**分类*/ |
||||
private String categoryId; |
||||
/**是否启用*/ |
||||
private Integer isEnabled; |
||||
/**规格型号*/ |
||||
private String model; |
||||
/**计量单位*/ |
||||
private String unitId; |
||||
|
||||
private BigDecimal stockAlarm; |
||||
|
||||
private Integer validity; |
||||
|
||||
/**销售价格*/ |
||||
private BigDecimal salePrice; |
||||
/**税控编码*/ |
||||
private String taxCode; |
||||
/**备注*/ |
||||
private String remark; |
||||
/**创建人*/ |
||||
private String createBy; |
||||
/**创建时间*/ |
||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") |
||||
@DateTimeFormat(pattern="yyyy-MM-dd") |
||||
private Date createTime; |
||||
/**修改人*/ |
||||
private String updateBy; |
||||
/**修改时间*/ |
||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") |
||||
@DateTimeFormat(pattern="yyyy-MM-dd") |
||||
private Date updateTime; |
||||
/**版本*/ |
||||
private Integer version; |
||||
|
||||
|
||||
} |
@ -0,0 +1,13 @@
|
||||
package dubbo.service; |
||||
|
||||
import dubbo.dto.BasMaterial; |
||||
|
||||
import java.util.List; |
||||
|
||||
public interface OpenErpService { |
||||
|
||||
// 把实现方法写在这里
|
||||
String hello(); |
||||
|
||||
List<BasMaterial> list(); |
||||
} |
Loading…
Reference in new issue